/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #10b981;
    --accent: #f59e0b;
    --dark: #1f2937;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    margin-bottom: 20px;
}

/* SECTION SPACING */
section {
    padding: 100px 0;
    position: relative;
}

/* Hero Section */
.hero-section {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* About Section */
.about-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Services Section */
.services-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Pricing Section */
.pricing-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Achievements Section */
.achievements-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
    background: #f8f9ff;
}

/* FAQ Section */
.faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Why Choose Us */
.why-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Founder Section */
.founder-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Contact Section */
.contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Footer Section */
#global-footer {
    padding: 60px 0 30px;
    background: var(--dark);
    color: white;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-top: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-title.left {
    text-align: left;
}

.section-title.left::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ---------- NAV HOVER FIX ---------- */
.nav-link:hover {
    color: var(--primary);
}

/* Active link */
.nav-link.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Remove focus outline after click */
.nav-link:focus {
    outline: none;
}

.logo {
    flex-shrink: 0;
    padding-right: 20px;
    margin-right: auto;
}

.logo img {
    height: auto;
    width: 120px;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: auto;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0.8rem;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* Mobile menu button styling */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
    z-index: 1002;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

/* Mobile menu overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-link {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 600;
    color: var(--dark);
    font-size: 1.1rem;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: left;
    width: 100%;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: var(--light);
    transform: translateX(8px);
    border-color: var(--primary);
}

/* WhatsApp button in mobile menu */
.mobile-nav-link.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    text-align: center;
    margin-top: 1.5rem;
    border: none;
    font-size: 1.1rem;
}

.mobile-nav-link.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Sticky header enhancement */
.navbar.sticky {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 0.3rem 0;
}

.navbar.sticky .logo img {
    width: 110px;
}

/* Page Header Styles - ADDED FOR DYNAMIC PAGES */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header .hero-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Text Center Utility - ADDED */
.text-center {
    text-align: center !important;
}

/* CTA Section - ADDED */
.cta-section {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(16, 185, 129, 0.05));
    padding: 80px 0;
    text-align: center;
}

/* Breadcrumb - ADDED */
.breadcrumb {
    padding: 1rem 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

/* Page Content Padding - ADDED */
.page-content {
    padding: 60px 0;
}

/* Hero Section */
.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    margin-top: 2rem;
    color: #000;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
    perspective: 1500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: calc(var(--radius) * 2);
    box-shadow: var(--shadow-lg);
    transform: perspective(1500px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.8s ease;
    border: 8px solid white;
}

.hero-image img:hover {
    transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Buttons */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.plan-select-btn,
.service-contact-btn,
.contact-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
    border: none;
    outline: none;
}

.plan-select-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 100%;
    margin-top: 2.5rem;
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.plan-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.service-contact-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    min-width: 120px;
    margin-top: 15px;
    border-radius: 25px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-contact-btn {
    opacity: 1;
    transform: translateY(0);
}

.service-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* About Section Styles */
.about-description {
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--gray);
}

.about-description p {
    margin-bottom: 1.2rem;
}

.mission-statement {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow);
}

.mission-statement h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mission-statement p {
    color: var(--gray);
    line-height: 1.7;
}

.about-top-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    margin-top: 60px;
}

.about-feature {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.about-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.about-feature .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.about-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.about-feature p {
    color: var(--gray);
    line-height: 1.7;
}

.step-marker {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--light);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-content p {
    color: var(--gray);
    font-size: 0.95rem;
}

.vision-statement {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 3.5rem;
    border-radius: calc(var(--radius) * 1.5);
    text-align: center;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.vision-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.vision-statement h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.vision-statement h3 span {
    color: var(--accent);
    font-weight: 800;
}

/* Client Outcomes Section */
.client-outcomes {
    background-color: #f8fafc;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    margin: 40px auto;
    width: 100%;
}

.client-outcomes .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-outcomes .header-content {
    text-align: center;
    margin-bottom: 40px;
}

.client-outcomes .header-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.client-outcomes .header-content p {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 30px;
}

/* Main Layout Grid (Cards vs Image) */
.client-outcomes .main-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Benefit Cards Grid (2 Columns) */
.client-outcomes .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Individual Card Styling */
.client-outcomes .outcome-card {
    background: #ffffff;
    padding: 25px;
    border-left: 5px solid #1e3a8a;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 8px;
}

.client-outcomes .outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-outcomes .outcome-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.client-outcomes .outcome-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* Image Container */
.client-outcomes .image-container img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    height: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 5px solid var(--primary);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(16, 185, 129, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: translateY(-5px);
    z-index: 5;
    background: linear-gradient(to bottom, rgba(79, 70, 229, 0.02), rgba(255, 255, 255, 1));
}

.pricing-card.featured:hover {
    transform: translateY(-15px);
}

.step-arrow {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.plan-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.8rem;
    text-align: center;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
    text-align: center;
}

.plan-target {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
}

.includes-label {
    display: block;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.feature-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.feature-list li:before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.best-for {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 0;
    text-align: center;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius);
    margin-top: auto;
}

.best-for span {
    font-weight: 700;
    color: var(--dark);
}

/* Achievements Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.stat-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.stat-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-subtext {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.testimonials-container {
    text-align: center;
    margin: 3rem 0;
}

.testimonials-container p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.google-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4285f4;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.google-reviews-btn:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

/* FAQ Section */
.faq-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.faq-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us */
.why-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.feature-item {
    padding: 2rem;
    border-left: 5px solid var(--primary);
    background: linear-gradient(to right, rgba(79, 70, 229, 0.05), rgba(255, 255, 255, 1));
    border-radius: 0 calc(var(--radius) * 1.5) calc(var(--radius) * 1.5) 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(10px);
    background: linear-gradient(to right, rgba(79, 70, 229, 0.1), rgba(255, 255, 255, 1));
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.2);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
}

.result-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 2.5rem;
    border-radius: calc(var(--radius) * 1.5);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.3rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.result-box i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.result-box p {
    margin-bottom: 0;
    font-weight: 600;
}

/* Founder Section */
.founder-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 5rem;
    align-items: start;
}

.founder-profile {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.founder-profile:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.founder-image-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--primary);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
}

.founder-profile:hover .founder-image-wrapper {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.founder-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.founder-social a {
    width: 45px;
    height: 45px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.founder-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.founder-info {
    padding: 1rem;
}

.founder-info .section-title {
    text-align: left;
    padding-top: 0;
    margin-bottom: 2.5rem;
}

.founder-info .section-title::after {
    left: 0;
    transform: none;
}

.founder-description {
    margin-bottom: 3rem;
}

.founder-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.contact-info .section-title {
    text-align: left;
    padding-top: 0;
    margin-bottom: 1.5rem;
}

.contact-info .section-title::after {
    left: 0;
    transform: none;
}

.contact-subtitle {
    color: var(--gray);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: calc(var(--radius) * 1.5);
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.4rem;
    width: 30px;
    flex-shrink: 0;
}

.contact-item a,
.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-btn.facebook { background: #4267B2; }
.social-btn.instagram { background: #E4405F; }
.social-btn.whatsapp { background: #25D366; }
.social-btn.linkedin { background: #0077B5; }

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.consultation-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1.5rem 2rem;
    border-radius: calc(var(--radius) * 1.5);
    margin-bottom: 3rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.consultation-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(79, 70, 229, 0.4), 
        rgba(16, 185, 129, 0.4), 
        rgba(79, 70, 229, 0.4));
    border-radius: calc(var(--radius) * 1.5 + 2px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-box:hover::before {
    opacity: 1;
}

.consultation-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.consultation-box a {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    min-width: 300px;
}

.consultation-box a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.consultation-box a i {
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.consultation-box p {
    margin: 1rem 0 0 0;
    font-size: 0.95rem;
    opacity: 0.9;
    font-style: italic;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
}

.btn-group {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.contact-btn {
    flex: 1;
    min-width: 160px;
    padding: 1.2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-purple {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.btn-purple:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
}

.btn-grey {
    background: linear-gradient(135deg, var(--gray-light), #d1d5db);
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-grey:hover {
    background: linear-gradient(135deg, var(--gray), #6b7280);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-image {
    position: relative;
    border-radius: calc(var(--radius) * 2);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* Contact Form - ADDED */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: var(--shadow);
    margin-top: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.max-w-7xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 32px;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
}

/* Typography */
#global-footer h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
}

.text-gray-400 {
    color: #9ca3af;
    line-height: 1.6;
    text-decoration: none;
    font-size: 14px;
}

#global-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#global-footer ul li {
    margin-bottom: 12px;
}

/* Hover effects */
#global-footer a.text-gray-400:hover {
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Icons styling */
.text-\[var\(--primary-color\)\] {
    color: #3b82f6;
}

.flex {
    display: flex;
}

.items-start {
    align-items: flex-start;
}

/* Bottom Bar */
.border-t {
    border-top: 1px solid #1f2937;
    margin-top: 48px;
    padding-top: 32px;
}

.bottom-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

#global-footer .social-links {
    display: flex;
    gap: 20px;
}

#global-footer .social-links a {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.3s ease;
}

#global-footer .social-links a:hover {
    color: #ffffff;
}

.copyright {
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-col-brand .footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-list i {
    margin-right: 10px;
    color: #3b82f6;
    margin-top: 3px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.6);
}

/* Scroll Progress */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9998;
    transition: width 0.1s ease;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--dark), #111827);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius);
    z-index: 1000;
    animation: slideUp 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 300px;
    text-align: center;
    font-weight: 500;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Loading animation for images */
img.loaded {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Form validation styles */
input:invalid,
select:invalid,
textarea:invalid {
    border-color: #ef4444 !important;
    background: linear-gradient(to right, rgba(239, 68, 68, 0.05), transparent);
}

input:valid,
select:valid,
textarea:valid {
    border-color: #10b981 !important;
    background: linear-gradient(to right, rgba(16, 185, 129, 0.05), transparent);
}

/* Loading states */
.button-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.button-loading::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    top: 50%;
    left: 50%;
    margin-left: -11px;
    margin-top: -11px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--dark), #111827);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
    border-top: 3px solid var(--primary);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.5rem;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-buttons {
    display: flex;
    gap: 1.2rem;
    flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
    min-width: 120px;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
}

.cookie-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: white;
}

/* ===================== RESPONSIVE DESIGN ===================== */

/* Large Screens (≤1200px) */
@media (max-width: 1200px) {
    .navbar {
        padding: 0 20px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
    
    .client-outcomes .main-layout {
        grid-template-columns: 1fr;
    }
    
    .client-outcomes .image-container {
        order: -1;
        margin-bottom: 30px;
    }
    
    .founder-container {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }
}

/* Tablet & Small Laptop (≤1024px) */
@media (max-width: 1024px) {
    /* Navbar */
    .navbar {
        justify-content: space-between;
    }

    .nav-links {
        display: flex;
        align-items: center;
    }

    /* Hide desktop links */
    .nav-links .nav-link:not(.mobile-menu-btn) {
        display: none;
    }

    /* Show hamburger */
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
    }

    /* Hero */
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
        gap: 3rem;
    }

    .hero-description {
        margin: 0 auto;
    }

    /* About */
    .about-top-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap {
        flex-direction: column;
    }
    
    .roadmap::before {
        display: none;
    }
    
    .roadmap-step {
        margin-bottom: 30px;
    }

    /* Founder */
    .founder-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .founder-info {
        padding-top: 0;
    }
    
    .founder-info .section-title {
        text-align: center;
    }
    
    .founder-info .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet & Mobile (≤768px) */
@media (max-width: 768px) {
    .logo img {
        width: 100px;
    }

    .navbar {
        padding: 0.8rem 15px;
    }

    .section-title {
        font-size: 1.9rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header .hero-tagline {
        font-size: 1.2rem;
    }

    /* Mobile nav drawer */
    .mobile-nav {
        width: 100%;
    }

    .about-top-grid,
    .roadmap {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 3rem;
    }

    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }

    .bottom-bar-flex {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .client-outcomes .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .client-outcomes .header-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .consultation-box a {
        min-width: auto;
        flex-direction: column;
        gap: 8px;
        padding: 1rem;
    }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .services-grid,
    .pricing-grid,
    .stats-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-container {
        gap: 2rem;
    }
    
    .founder-profile {
        padding: 2rem;
    }
    
    .founder-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .vision-statement {
        padding: 1.5rem;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .consultation-box {
        padding: 1.5rem 1rem;
    }
    
    .consultation-box a {
        min-width: 250px;
    }
}