/* ========================================
   Megenta Home Care LLC - Professional Redesign
   ======================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ========================================
   Design Tokens
   ======================================== */
:root {
    /* Colors */
    --primary-blue: #0066FF;
    --primary-blue-dark: #0052CC;
    --primary-blue-light: #E6F0FF;
    --accent-teal: #00B8A9;
    --accent-orange: #FF6B35;

    /* Backgrounds */
    --bg-light: #F8FBFF;
    --bg-white: #FFFFFF;
    --bg-gradient: linear-gradient(135deg, #E8F4FD 0%, #FFFFFF 50%, #F0F7FF 100%);
    --bg-hero-curve: #E8F4FD;

    /* Text */
    --text-dark: #1A1A2E;
    --text-body: #4A5568;
    --text-muted: #718096;
    --text-light: #A0AEC0;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 102, 255, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 102, 255, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 102, 255, 0.15);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);

    /* Spacing */
    --section-spacing: 6rem;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ========================================
   Typography
   ======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 1vw, 2.75rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    color: var(--text-body);
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-spacing) 0;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-text {
    background: none;
    color: white;
    padding: 0.5rem;
    font-weight: 500;
}



/* ========================================
   Header / Navigation
   ======================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Add padding to body to account for fixed header */
body {
    padding-top: 75px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-body);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 4rem 0 6rem;
    background: var(--bg-gradient);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 70%;
    height: 150%;
    background: var(--bg-hero-curve);
    border-radius: 50%;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 540px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 40px;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.hero-trust i {
    color: var(--primary-blue);
}

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Cards on Hero */
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 15%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card.card-2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1s;
    display: none;
}

.floating-card.card-3 {
    bottom: 10%;
    right: 10%;
    animation-delay: 2s;
    display: none;
}

.floating-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card-icon.blue {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.floating-card-icon.teal {
    background: #E0F7F5;
    color: var(--accent-teal);
}

.floating-card-icon.orange {
    background: #FFF0EB;
    color: var(--accent-orange);
}

.floating-card-text h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.floating-card-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Floating Badges (hidden on desktop, shown on mobile over hero image) */
.mobile-floating-badge {
    display: none;
    position: absolute;
    background: white;
    border-radius: var(--radius-full);
    padding: 0.5rem 0.75rem;
    box-shadow: var(--shadow-md);
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.mobile-floating-badge i {
    font-size: 0.75rem;
    color: var(--primary-blue);
}

.mobile-floating-badge.badge-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;

}

.mobile-floating-badge.badge-2 {
    bottom: 35%;
    left: 5%;
    animation-delay: 1s;
    display: none;
}

.mobile-floating-badge.badge-3 {
    bottom: 10%;
    right: 15%;
    animation-delay: 2s;
    display: none;
}

/* ========================================
   Partners / Trust Section
   ======================================== */
.partners {
    padding: 3rem 0;
    background: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partners-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    cursor: pointer;
}

.partners-logos span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.partners-logos span:hover {
    opacity: 1;
    color: var(--text-body);
}

/* ========================================
   Services / Features Section
   ======================================== */
.services {
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card.featured {
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.service-icon.blue {
    background: var(--primary-blue-light);
    color: var(--primary-blue);
}

.service-icon.teal {
    background: #E0F7F5;
    color: var(--accent-teal);
}

.service-icon.orange {
    background: #FFF0EB;
    color: var(--accent-orange);
}

.service-icon.pink {
    background: #FEE2E2;
    color: #EF4444;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   About / Why Choose Us Section
   ======================================== */
.about {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content>p {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.feature-item i {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    margin-top: 2px;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ========================================
   Team / Specialists Section
   ======================================== */
.team {
    display: none;
    padding: var(--section-spacing) 0;
    background: var(--bg-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.team-card:hover {
    background: var(--bg-light);
}

.team-card-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    margin-bottom: 0.25rem;
}

.team-card span {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 500;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    padding: var(--section-spacing) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars i {
    color: #FBBF24;
    font-size: 0.875rem;
}

.testimonial-card blockquote {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.testimonial-author-info span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: var(--section-spacing) 0;
    background: white;
    text-align: center;
}

.cta h2 {
    color: var(--text-dark);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-body);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta .btn {
    background: var(--primary-blue);
    color: white;
}

.cta .btn:hover {
    background: var(--text-dark);
    color: white;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */
.page-hero {
    background: var(--bg-gradient);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 60%;
    height: 200%;
    background: var(--bg-hero-curve);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-label {
    display: inline-block;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.page-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   About Intro Section
   ======================================== */
.about-intro {
    padding: var(--section-spacing) 0;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-label {
    display: inline-block;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-intro-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-intro-content p {
    color: var(--text-body);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.highlight-text {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-blue);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-body);
}

.highlight-text i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
    opacity: 0.5;
}

.about-intro-image {
    position: relative;
}

.about-intro-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.image-badge {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.image-badge i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.image-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: var(--primary-blue);
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Training Section
   ======================================== */
.training-section {
    padding: var(--section-spacing) 0;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.training-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.training-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue-light);
}

.training-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue-light);
    line-height: 1;
}

.training-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.training-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.training-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--primary-blue-light);
    border-radius: var(--radius-md);
}

.training-note i {
    color: var(--primary-blue);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.training-note p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   Services Intro
   ======================================== */
.services-intro {
    padding: 4rem 0;
    text-align: center;
    background: white;
}

.services-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-intro h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-intro p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ========================================
   Services Detailed
   ======================================== */
.services-detailed {
    padding: var(--section-spacing) 0;
    background: var(--bg-light);
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detailed-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.service-detailed-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.service-detailed-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: var(--primary-blue-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detailed-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.service-detailed-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-detailed-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========================================
   Why Choose Section
   ======================================== */
.why-choose {
    padding: var(--section-spacing) 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-choose-content>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-body);
    font-weight: 500;
}

.check-list li i {
    color: var(--accent-teal);
    font-size: 1rem;
}

.why-choose-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: var(--section-spacing) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

.contact-card:hover {
    background: var(--primary-blue-light);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.contact-card-icon i {
    color: var(--primary-blue);
    font-size: 1.125rem;
}

.contact-card-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.contact-card-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.contact-card-content a {
    color: var(--primary-blue);
    font-weight: 500;
}

.contact-card-content a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-form-card>p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px var(--primary-blue-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.25rem;
}

/* Input validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Button loading state */
.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Map Section */
.map-section {
    padding: 0 0 var(--section-spacing);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--bg-light);
    color: var(--text-body);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(0, 102, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo img {
    height: 45px;
    margin-bottom: 1.25rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-column h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-column ul li {
    margin-bottom: 0.875rem;
}

.footer-column ul a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column ul a:hover {
    color: var(--primary-blue);
    transform: translateX(4px);
}

.footer-column ul a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition-fast);
}

.footer-column ul a:hover::before {
    width: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

/* ========================================
   Mobile Navigation Menu
   ======================================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--transition-normal);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.mobile-menu-links {
    margin-top: 3rem;
}

.mobile-menu-links a {
    display: block;
    padding: 1rem 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .hero .container {
        gap: 3rem;
    }

    .floating-card.card-1 {
        right: 0;
    }

    .floating-card.card-2 {
        left: 0;
    }

    /* Inner pages responsive */
    .about-intro-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-intro-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        position: static;
    }
}


/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    :root {
        --section-spacing: 4rem;
    }

    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 90%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
        position: relative;
    }

    .floating-card {
        display: none;
    }

    .mobile-floating-badge {
        display: flex;
    }

    .about .container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .feature-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    /* Inner pages mobile */
    .training-grid,
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .training-card,
    .service-detailed-card {
        padding: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --section-spacing: 3rem;
    }

    .container {
        padding: 0 1rem;
    }



    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card-image {
        width: 140px;
        height: 140px;
    }

    .partners-logos {
        gap: 1.5rem;
    }

    .partners-logos span {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-left: 15px;
        gap: 2.5rem;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1;
    }

    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-column h4 {
        margin-bottom: 1rem;
    }

    .footer-column ul a::before {
        display: none;
    }

    .footer-column ul a:hover {
        transform: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Inner pages small mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .page-hero {
        padding: 3rem 0;
    }

    .image-badge {
        display: none;
    }

    .contact-form-card {
        padding: 1.5rem;
    }
}