/* ===== RANA MONEEB - NYC SEO EXPERT WEBSITE ===== */
/* Modern, Professional Design with NYC Theme */

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

:root {
    /* NYC Professional Theme Colors */
    --primary: #0f4c81;
    --primary-dark: #0a3459;
    --primary-light: #1a6ba8;
    --accent: #f59e0b;
    --accent-green: #10b981;
    --nyc-orange: #ff6b35;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --gray-lighter: #e5e7eb;
    --off-white: #f9fafb;
    --white: #ffffff;

    /* Aliases for compatibility */
    --text: #333333;
    --text-muted: #6b7280;
    --bg-light: #f3f4f6;
    --border: #e5e7eb;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0f4c81 0%, #1e3a5f 50%, #2d5a87 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ff6b35 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, rgba(15, 76, 129, 0.95) 0%, rgba(30, 58, 95, 0.9) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(15, 76, 129, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Badge ===== */
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(15, 76, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 76, 129, 0.5);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white);
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.4);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
}

.navbar.scrolled .btn-nav,
.navbar.scrolled .nav-link.btn-nav {
    background: #0f4c81 !important;
    color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(15, 76, 129, 0.4) !important;
    border: none !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 1px var(--primary-light);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary);
}

.btn-nav {
    display: inline-block !important;
    background: #0f4c81 !important;
    color: #ffffff !important;
    padding: 10px 20px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.3) !important;
    border: none !important;
    text-decoration: none !important;
}

/* Ensure nav-link with btn-nav class keeps button styling */
.nav-link.btn-nav,
.nav-link.btn-nav:hover,
.nav-link.btn-nav:active,
.nav-link.btn-nav:focus,
.nav-link.btn-nav:visited {
    background: #0f4c81 !important;
    color: #ffffff !important;
}

.btn-nav:hover,
.btn-nav:active,
.btn-nav:focus {
    background: #0a3d6b !important;
    color: #ffffff !important;
}

/* ===== Nav Social Icons ===== */
.nav-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--gray-lighter);
}

.nav-social a {
    width: 36px;
    height: 36px;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: all 0.3s ease;
}

.nav-social a:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Mega Menu ===== */
.nav-item-has-mega {
    position: relative;
}

.mega-menu-trigger {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.mega-menu-trigger::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid var(--primary);
    transition: transform 0.3s ease;
}

.nav-item-has-mega:hover .mega-menu-trigger::after {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 900px;
    max-width: 1200px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px 0;
    border: 1px solid var(--gray-lighter);
    overflow: hidden;
}

.nav-item-has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

/* Locations mega menu has 5 sections - needs more width */
.locations-mega-menu {
    min-width: 1100px;
    max-width: 1400px;
}

.locations-mega-menu .mega-menu-content {
    grid-template-columns: repeat(5, 1fr);
}

.mega-menu-section {
    padding: 0 20px;
    border-right: 1px solid var(--gray-lighter);
}

.mega-menu-section:first-child {
    padding-left: 24px;
}

.mega-menu-section:last-child {
    border-right: none;
    padding-right: 24px;
}

/* Category Label Style */
.mega-cat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: 12px;
    padding-top: 20px;
}

.mega-cat-label:first-child {
    padding-top: 0;
}

.mega-menu-section ul {
    list-style: none;
    margin-bottom: 16px;
}

.mega-menu-section li {
    margin-bottom: 8px;
}

.mega-menu-section a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.mega-menu-section a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.mega-menu-section a:hover::before {
    opacity: 1;
}

/* CTA Box in Mega Menu */
.mega-cta-box {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    text-align: center;
}

.mega-cta-box .cta-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.mega-cta-box .cta-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    line-height: 1.5;
}

.mega-cta-box .btn {
    background: var(--white);
    color: var(--primary) !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    width: 100%;
}

.btn-small {
    padding: 10px 20px !important;
    font-size: 14px !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: var(--off-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge-nyc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
}

.nyc-icon {
    width: 20px;
    height: 20px;
    background: var(--nyc-orange);
    border-radius: 50%;
}

.badge-pakistan {
    padding: 10px 20px;
    background: var(--accent-green);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.trust-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-lighter);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.trust-item span:last-child {
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: var(--gray-lighter);
}

/* ===== Hero Form ===== */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
}

.hero-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 450px;
    width: 100%;
}

.hero-form .form-header {
    margin-bottom: 28px;
}

.hero-form .form-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.hero-form .form-header p {
    font-size: 15px;
    color: var(--gray);
}

.input-group {
    position: relative;
    margin-bottom: 16px;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid var(--gray-lighter);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-light);
    pointer-events: none;
}

.hero-form select {
    width: 100%;
    padding: 16px;
    border: 2px solid var(--gray-lighter);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    margin-bottom: 16px;
    cursor: pointer;
    background: var(--white);
}

.form-note {
    font-size: 13px;
    color: var(--gray-light);
    text-align: center;
    margin-top: 20px;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Advantage Section ===== */
.advantage {
    padding: 100px 0;
    background: var(--white);
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--off-white);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
    background: var(--white);
}

.advantage-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.advantage-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.advantage-card.featured p,
.advantage-card.featured .advantage-highlight {
    color: rgba(255, 255, 255, 0.9);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
}

.advantage-card.featured .advantage-icon {
    background: rgba(255, 255, 255, 0.2);
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.advantage-card.featured h3 {
    color: var(--white);
}

.advantage-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.advantage-highlight {
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--gray);
}

.advantage-highlight span {
    color: var(--primary);
    font-weight: 700;
}

.advantage-card.featured .advantage-highlight span {
    color: var(--accent);
}

/* ===== Services Section ===== */
.services {
    padding: 100px 0;
    background: var(--off-white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 32px 40px;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(10px);
}

.service-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.service-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Process Section ===== */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
}

.process-step {
    text-align: center;
    z-index: 2;
}

.step-marker {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px rgba(15, 76, 129, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-marker {
    box-shadow: 0 0 0 12px rgba(15, 76, 129, 0.2);
    transform: scale(1.1);
}

.step-card {
    background: var(--off-white);
    padding: 24px;
    border-radius: 16px;
    max-width: 200px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.process-connector {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    position: relative;
}

.process-connector:first-of-type {
    border-radius: 3px 0 0 3px;
}

.process-connector:last-of-type {
    border-radius: 0 3px 3px 0;
}

.process-cta {
    text-align: center;
}

/* ===== About Section ===== */
.about {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.rana-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    left: -20px;
    right: 20px;
    top: 20px;
    border: 3px solid var(--primary);
    border-radius: 24px;
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.experience-badge .years {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-intro,
.about-why,
.about-approach {
    margin-bottom: 24px;
}

.about-intro p,
.about-why p,
.about-approach p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.about-why h4,
.about-approach h4 {
    color: var(--accent);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.credential-item svg {
    flex-shrink: 0;
    color: var(--accent-green);
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: var(--off-white);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--off-white);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
}

.badge-icon {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: var(--accent);
}

.testimonial-text {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--dark);
}

.author-title {
    font-size: 14px;
    color: var(--gray-light);
}

.result-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FAQ Section ===== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-lighter);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--gray);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 28px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
}

/* ===== Final CTA Section ===== */
.final-cta {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-gradient {
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M20 20h20v20H20zM0 0h20v20H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.contact-row svg {
    flex-shrink: 0;
    color: var(--primary-light);
}

.contact-row a {
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid var(--primary-light);
    padding-bottom: 2px;
}

.contact-row a:hover {
    color: var(--accent);
}

/* ===== CTA Form ===== */
.cta-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
}

.cta-form h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.cta-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    font-family: inherit;
    margin-bottom: 16px;
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.15);
}

.cta-form select {
    cursor: pointer;
}

.cta-form select option {
    background: var(--dark);
    color: var(--white);
}

.cta-form textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    background: var(--accent-green);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    margin-top: 16px;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    padding: 70px 0 25px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    display: flex;
    gap: 70px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Footer Brand Section */
.footer-brand-section {
    flex: 0 0 240px;
    padding-right: 20px;
}

.footer-brand-section .logo {
    margin-bottom: 18px;
    display: inline-flex;
}

.footer-brand-section .logo-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1.5px solid var(--accent);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.footer-brand-section .logo-text {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 22px;
    line-height: 1.7;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover svg {
    transform: scale(1.1);
}

/* Footer Links Section */
.footer-links-section {
    display: flex;
    gap: 35px;
    flex: 1;
    flex-wrap: wrap;
}

.footer-column {
    flex: 0 1 auto;
}

.footer-column h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
    margin-bottom: 18px;
    position: relative;
}

.footer-column h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-column > a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    margin-bottom: 9px;
    transition: all 0.2s ease;
    position: relative;
}

.footer-column > a:hover {
    color: var(--accent);
    padding-left: 5px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 22px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
}

/* Old footer styles - keeping for compatibility */
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr repeat(6, 1fr);
    gap: 28px;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand {
    padding-right: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 10px;
}

.footer-cat::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .trust-bar {
        justify-content: center;
        flex-wrap: wrap;
    }

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

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

    .about-grid,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-connector {
        width: 3px;
        height: 40px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand-section {
        flex: none;
        text-align: center;
        padding-right: 0;
    }

    .footer-links-section {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-links-section {
        flex-direction: column;
        gap: 25px;
    }

    .footer-column {
        min-width: 100%;
    }

    .nav-social {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
        gap: 8px;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Mobile nav links styling */
    .nav-menu .nav-link {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid var(--gray-lighter);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu .nav-link.btn-nav {
        background: #0f4c81 !important;
        color: #ffffff !important;
        justify-content: center;
        text-align: center;
        margin-top: 10px;
    }

    .nav-menu .nav-social {
        display: flex;
        border-left: none;
        padding-left: 0;
        margin-left: 0;
        margin-top: 20px;
        justify-content: center;
    }

    /* Mobile mega menu as dropdown */
    .mega-menu {
        display: none !important;
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        border: none !important;
        border-top: 1px solid var(--gray-lighter) !important;
        padding: 15px 0 !important;
        min-width: 100% !important;
        max-width: 100% !important;
        background: var(--off-white) !important;
        border-radius: 0 !important;
    }

    .mega-menu.active {
        display: block !important;
        /* Add scrolling for mobile mega menu */
        max-height: 60vh !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Custom scrollbar for mobile mega menu */
    .mega-menu.active::-webkit-scrollbar {
        width: 4px;
    }

    .mega-menu.active::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    .mega-menu.active::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 4px;
    }

    .mega-menu-content {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        padding: 0 !important;
    }

    .mega-menu-section {
        border-right: none !important;
        border-bottom: 1px solid var(--gray-lighter) !important;
        padding: 10px 0 !important;
    }

    .mega-menu-section:last-child {
        border-bottom: none !important;
    }

    .mega-menu-section:first-child {
        padding-left: 0 !important;
    }

    .mega-menu-section:last-child {
        padding-right: 0 !important;
    }

    .mega-cat-label {
        background: var(--white);
        padding: 10px 15px;
        margin: 0 0 8px 0 !important;
        border-radius: 8px;
        font-weight: 600;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }

    /* Make category labels clickable on mobile */
    .mega-cat-label.mobile-dropdown {
        cursor: pointer;
        position: relative;
        padding-right: 40px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    .mega-cat-label.mobile-dropdown::after {
        content: '+';
        position: absolute;
        right: 15px;
        font-size: 20px;
        font-weight: bold;
        color: var(--primary);
        transition: transform 0.3s ease;
    }

    .mega-cat-label.mobile-dropdown.active::after {
        content: '−';
    }

    /* Hide submenus by default on mobile */
    .mobile-submenu {
        display: none !important;
        margin-bottom: 0 !important;
        padding-left: 0 !important;
    }

    /* Show submenu when parent category is active */
    .mobile-dropdown.active + .mobile-submenu {
        display: block !important;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mega-menu-section li {
        margin-bottom: 0 !important;
    }

    .mega-menu-section a {
        padding: 12px 15px 12px 25px;
        display: block;
        border-radius: 0 6px 6px 0;
        background: #f8f9fa;
        margin-bottom: 3px;
        font-size: 15px;
        border-left: 3px solid var(--primary);
    }

    .mega-menu-section a:hover {
        background: var(--primary) !important;
        color: var(--white) !important;
    }

    .mega-cta-box {
        display: none;
    }

    /* Show arrow on mobile */
    .mega-menu-trigger::after {
        display: block !important;
    }

    .mega-menu-trigger.mobile-open::after {
        transform: rotate(180deg) !important;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-form {
        padding: 30px 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

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

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

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

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

    .footer-bottom-right {
        justify-content: center;
    }

    .about-content h2,
    .cta-text h2 {
        font-size: 32px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Page Header */
.page-header {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.page-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.95) 0%, rgba(30, 58, 95, 0.9) 100%);
}

.page-header-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.page-header-content .badge {
    margin-bottom: 24px;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-header-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-intro {
    margin-bottom: 40px;
}

.contact-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.contact-intro p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.contact-card-content > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
}

.contact-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link.whatsapp {
    color: #25d366;
}

.contact-link.whatsapp:hover {
    color: #128c7e;
}

.contact-text {
    display: block;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 4px;
}

/* Social Section */
.contact-social-section {
    padding: 32px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-radius: 16px;
    border: 1px solid var(--gray-lighter);
}

.contact-social-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-social-section > p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 20px;
}

.contact-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

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

.contact-form-box {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-lighter);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    font-size: 15px;
    color: var(--gray);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark);
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(15, 76, 129, 0.1);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    margin-top: 28px;
}

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

.form-notice {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-lighter);
}

.form-notice p {
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Why Contact Section */
.why-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-contact-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
}

.why-contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.why-contact-item p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Quick CTA Section */
.quick-cta-section {
    padding: 60px 0;
}

.quick-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    color: var(--white);
}

.quick-cta-content h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.quick-cta-content p {
    font-size: 15px;
    opacity: 0.9;
}

.quick-cta .btn {
    background: var(--white);
    color: var(--primary);
    flex-shrink: 0;
}

.quick-cta .btn:hover {
    background: var(--off-white);
    transform: translateY(-3px);
}

/* Active nav state */
.nav-link.active {
    color: var(--primary) !important;
}

/* Button nav keeps white text even when active */
.nav-link.btn-nav.active,
.nav-link.btn-nav.active:hover,
.nav-link.btn-nav.active:focus {
    background: #0f4c81 !important;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .quick-cta {
        flex-direction: column;
        text-align: center;
    }

    .page-header-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }

    .page-header-content h1 {
        font-size: 28px;
    }

    .page-header-content p {
        font-size: 16px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-card {
        flex-direction: column;
        gap: 12px;
    }

    .contact-card-icon {
        width: 48px;
        height: 48px;
    }

    .contact-form-box {
        padding: 24px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .why-contact-section {
        padding: 50px 0;
    }

    .why-contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-cta {
        padding: 30px 24px;
    }

    .quick-cta-content h2 {
        font-size: 20px;
    }
}

/* ===== WHY ME PAGE STYLES ===== */

/* Why Me Page - Advantage Section */
.advantage-full {
    padding: 80px 0;
    background: var(--off-white);
}

.advantage-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.advantage-card-large {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    border: 2px solid var(--gray-lighter);
    transition: all 0.4s ease;
}

.advantage-card-large:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.advantage-card-large.featured {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: var(--primary);
}

.advantage-card-large.featured:hover {
    transform: translateY(-8px);
}

.advantage-card-large h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.advantage-card-large.featured h3 {
    color: var(--white);
}

.advantage-card-large p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.advantage-card-large.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.advantage-card-large ul {
    list-style: none;
    margin-top: 20px;
}

.advantage-card-large li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gray);
}

.advantage-card-large.featured li {
    color: rgba(255, 255, 255, 0.9);
}

.advantage-card-large li svg {
    flex-shrink: 0;
    color: var(--accent-green);
}

.advantage-card-large.featured li svg {
    color: var(--accent);
}

.advantage-card-large.featured .advantage-highlight {
    color: rgba(255, 255, 255, 0.9);
    border-top-color: rgba(255, 255, 255, 0.2);
}

.advantage-card-large.featured .advantage-highlight span {
    color: var(--accent);
    font-weight: 700;
}

/* Why Me Page - Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table thead {
    background: var(--gradient-primary);
}

.comparison-table th {
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    border-bottom: none;
}

.comparison-table th:first-child {
    width: 35%;
    background: rgba(0, 0, 0, 0.2);
}

.comparison-table th:nth-child(2) {
    background: rgba(0, 0, 0, 0.1);
}

.comparison-table th:nth-child(3) {
    background: var(--accent);
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 15px;
    color: var(--gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--off-white);
}

.comparison-table tbody tr:hover {
    background: rgba(15, 76, 129, 0.05);
}

.comparison-table .check {
    color: var(--accent-green);
    font-weight: 700;
}

.comparison-table .cross {
    color: var(--nyc-orange);
    font-weight: 700;
}

/* Why Me Page - Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--dark);
}

.benefits-section .section-header h2 {
    color: var(--white);
}

.benefits-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 20px;
}

.benefit-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Why Me Page - CTA Section */
.why-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.why-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.why-cta-content > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.why-cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.why-cta-content .btn-primary:hover {
    background: var(--off-white);
    color: var(--primary-dark);
}

/* Responsive for Why Me Page */
@media (max-width: 1024px) {
    .advantage-grid-full,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-cta-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .advantage-full,
    .comparison-section,
    .benefits-section,
    .why-cta-section {
        padding: 50px 0;
    }

    .advantage-card-large {
        padding: 30px 24px;
    }

    .advantage-card-large h3 {
        font-size: 20px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 14px;
        font-size: 14px;
    }

    .why-cta-content h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    padding: 140px 0 80px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-text .badge-nyc {
    margin-bottom: 20px;
}

.about-hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero-actions .btn-outline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-hero-image {
    display: flex;
    justify-content: center;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    box-shadow: 0 20px 60px rgba(15, 76, 129, 0.2);
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

.profile-badge {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.profile-badge span:first-child {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.profile-badge span:last-child {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--off-white);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About page stat numbers - more specific to avoid overriding Why Me page */
.about-stats .stat-number,
.stat-card .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--gray);
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.story-text h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.story-text p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlights {
    margin-top: 40px;
    display: grid;
    gap: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: var(--off-white);
    border-radius: 12px;
}

.highlight-item svg {
    flex-shrink: 0;
    color: var(--accent-green);
}

.highlight-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-dark);
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--off-white);
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: var(--white);
}

.service-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.6;
}

/* Connect Section */
.connect-section {
    padding: 100px 0;
    background: var(--white);
}

.connect-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.social-card.linkedin {
    background: #f0f7ff;
    color: #0077b5;
}

.social-card.facebook {
    background: #fff5f5;
    color: #1877f2;
}

.social-card.instagram {
    background: linear-gradient(135deg, #fff5f5 0%, #fdf5ff 100%);
    color: #d62976;
}

.social-card.twitter {
    background: var(--off-white);
    color: var(--dark);
}

.social-card.youtube {
    background: #fff5f5;
    color: #ff0000;
}

.social-card.whatsapp {
    background: #f0fff4;
    color: #25d366;
}

.social-card svg {
    flex-shrink: 0;
}

.social-card div {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.social-handle {
    font-size: 14px;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--off-white);
}

.cta-box {
    background: var(--gradient-primary);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-actions .btn-outline:hover {
    background: var(--off-white);
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero-text {
        text-align: center;
    }

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

    .profile-image {
        width: 350px;
        height: 350px;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero-text h1 {
        font-size: 36px;
    }

    .about-hero-text p {
        font-size: 16px;
    }

    .profile-image {
        width: 280px;
        height: 280px;
    }

    .profile-badge {
        padding: 16px 24px;
        right: 0;
    }

    .profile-badge span:first-child {
        font-size: 28px;
    }

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

    .stat-number {
        font-size: 36px;
    }

    .story-section,
    .services-overview,
    .connect-section {
        padding: 60px 0;
    }

    .story-text h2 {
        font-size: 32px;
    }

    .story-text p {
        font-size: 16px;
    }

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

    .cta-box {
        padding: 40px 24px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 16px;
    }
}
