/*
Theme Name: AON Meetings India Landing
Theme URI: https://aonmeetings.com
Description: Custom WordPress theme for AON Meetings India landing page with bilingual support (Hindi/English)
Version: 1.0
Author: AON Meetings
Author URI: https://aonmeetings.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aonmeetings-india
Tags: landing-page, business, responsive, custom

This theme is designed specifically for the AON Meetings India landing page.
*/
:root {
            --primary: #0052CC;
            --primary-dark: #003d99;
            --primary-light: #e6f0ff;
            --accent: #00A86B;
            --accent-dark: #008f5a;
            --gold: #F59E0B;
            --gold-light: #FEF3C7;
            --dark: #1a1a2e;
            --gray-900: #111827;
            --gray-700: #374151;
            --gray-500: #6B7280;
            --gray-300: #D1D5DB;
            --gray-100: #F3F4F6;
            --white: #FFFFFF;
            --gradient-primary: linear-gradient(135deg, #0052CC 0%, #003d99 100%);
            --gradient-accent: linear-gradient(135deg, #00A86B 0%, #008f5a 100%);
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 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);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            --radius: 12px;
            --radius-lg: 20px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-900);
            line-height: 1.6;
            background: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Announcement Bar */
        .announcement-bar {
            background: var(--gradient-accent);
            color: var(--white);
            text-align: center;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .announcement-bar span {
            background: rgba(255,255,255,0.2);
            padding: 2px 10px;
            border-radius: 20px;
            margin-right: 8px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Navigation */
        .nav {
            background: var(--white);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: var(--shadow-sm);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 18px;
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-cta {
            background: var(--gradient-primary);
            color: var(--white) !important;
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--gray-700);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0,82,204,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            max-width: 560px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--gold-light);
            color: var(--gold);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-badge svg {
            width: 16px;
            height: 16px;
        }

        .hero h1 {
            font-size: 52px;
            color: var(--dark);
            margin-bottom: 24px;
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero h1 .price-highlight {
            color: var(--accent);
        }

        .hero-description {
            font-size: 18px;
            color: var(--gray-700);
            margin-bottom: 32px;
            line-height: 1.7;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 36px;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            color: var(--gray-700);
        }

        .hero-feature svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
        }

        .hero-ctas {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 16px 32px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 4px 14px rgba(0,82,204,0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,82,204,0.5);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary-light);
        }

        .hero-image {
            position: relative;
			margin-top:-70px;
        }

        .hero-image img {
            width: 100%;
            border-radius:10px;
            box-shadow: var(--shadow-xl);
        }

        .hero-image-placeholder {
            width: 100%;
            aspect-ratio: 4/3;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .hero-image-placeholder::before {
            content: '';
            position: absolute;
            inset: 20px;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 12px;
        }



        .video-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
            position: absolute;
            inset: 30px;
        }

        .video-tile {
            background: rgba(255,255,255,0.15);
            border-radius: 8px;
            backdrop-filter: blur(4px);
        }

        .floating-badge {
            position: absolute;
            background: var(--white);
            padding: 12px 20px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .floating-badge.top-left {
            top: -20px;
            left: -30px;
        }

        .floating-badge.bottom-right {
            bottom: -20px;
            right: -30px;
        }

        .floating-badge svg {
            width: 24px;
            height: 24px;
        }

        .floating-badge .badge-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        /* Social Proof Bar */
        .social-proof {
            background: var(--gray-900);
            padding: 24px 0;
            color: var(--white);
        }

        .social-proof-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .proof-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
        }

        .proof-item svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
        }

        .proof-item strong {
            color: var(--gold);
        }

        /* Pricing Section */
        .pricing {
            padding:100px 0 70px 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 42px;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--gray-500);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1250px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--white);
            border: 2px solid var(--gray-100);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            position: relative;
            transition: all 0.3s;
        }

        .pricing-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }

        .pricing-card.featured {
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-4px);
        }

        .pricing-badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-accent);
            color: var(--white);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 32px;
            padding-bottom: 32px;
            border-bottom: 1px solid var(--gray-100);
        }

        .pricing-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .pricing-desc {
            font-size: 14px;
            color: var(--gray-500);
            margin-bottom: 24px;
        }

        .pricing-amount {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 4px;
        }

        .currency {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
        }

        .price {
            font-size: 56px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1;
        }

        .period {
            font-size: 16px;
            color: var(--gray-500);
        }

        .pricing-participants {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            margin-top: 16px;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 32px;
        }

        .pricing-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 10px 0;
            font-size: 15px;
            color: var(--gray-700);
        }

        .pricing-features li svg {
            width: 20px;
            height: 20px;
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pricing-cta {
            width: 100%;
			gap:0px;
        }

        .pricing-card.featured .pricing-cta {
            background: var(--gradient-accent);
            box-shadow: 0 4px 14px rgba(0,168,107,0.4);
        }

        /* Comparison Section */
        .comparison {
            padding: 100px 0;
            background: var(--gray-100);
        }

        .comparison-table-wrapper {
            overflow-x: auto;
            margin-top: 48px;
        }

        .comparison-table {
            width: 100%;
            min-width: 700px;
            border-collapse: collapse;
            background: var(--white);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .comparison-table th,
        .comparison-table td {
            padding: 20px 24px;
            text-align: left;
            border-bottom: 1px solid var(--gray-100);
        }

        .comparison-table th {
            background: var(--gray-900);
            color: var(--white);
            font-weight: 600;
            font-size: 15px;
        }

        .comparison-table th:first-child {
            border-radius: var(--radius-lg) 0 0 0;
        }

        .comparison-table th:last-child {
            border-radius: 0 var(--radius-lg) 0 0;
            background: var(--primary);
        }

        .comparison-table td {
            font-size: 15px;
            color: var(--gray-700);
        }

        .comparison-table td:last-child {
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table tr:last-child td:first-child {
            border-radius: 0 0 0 var(--radius-lg);
        }

        .comparison-table tr:last-child td:last-child {
            border-radius: 0 0 var(--radius-lg) 0;
        }

        .check-icon {
            color: var(--accent);
        }

        .x-icon {
            color: #EF4444;
        }

        .savings-callout {
            background: var(--gradient-accent);
            color: var(--white);
            padding: 24px 32px;
            border-radius: var(--radius);
            text-align: center;
            margin-top: 32px;
            font-size: 18px;
        }

        .savings-callout strong {
            font-size: 24px;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .feature-card {
            padding: 32px;
            border-radius: var(--radius-lg);
            background: var(--gray-100);
            transition: all 0.3s;
        }

        .feature-card:hover {
            background: var(--primary-light);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            color: var(--white);
        }

        .feature-card h3 {
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.6;
        }

.pricing-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.benefit-card1 {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px 24px;
    max-width: 400px;
    color: var(--white);
    text-align: center;
}

.benefit-icon {
    font-size: 1.25rem;
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
}

        .cta-trust {
        color: var(--gray-100);
        line-height: 4;
        font-size: 1.25rem;
			font-weight: 600;
        }

        /* Use Cases Section */
        .use-cases {
            padding: 100px 0;
            background: var(--gray-900);
            color: var(--white);
        }

        .use-cases .section-header h2 {
            color: var(--white);
        }

        .use-cases .section-header p {
            color: var(--gray-300);
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .use-case-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            text-align: center;
            transition: all 0.3s;
        }

        .use-case-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }

        .use-case-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .use-case-icon svg {
            width: 32px;
            height: 32px;
            color: var(--white);
        }

        .use-case-card h3 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .use-case-card p {
            font-size: 14px;
            color: var(--gray-300);
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .testimonial-card {
            background: var(--gray-100);
            border-radius: var(--radius-lg);
            padding: 32px;
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 20px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 16px;
            color: var(--gray-700);
            line-height: 1.7;
            margin-bottom: 24px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 700;
            font-size: 18px;
        }

        .testimonial-info h4 {
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .testimonial-info p {
            font-size: 14px;
            color: var(--gray-500);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0 80px 0;
            background: var(--gray-100);
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .faq-item:hover {
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }

        .faq-question h3 {
            font-size: 16px;
            color: var(--dark);
            font-weight: 600;
        }

        .faq-question svg {
            width: 24px;
            height: 24px;
            color: var(--primary);
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .faq-item.open .faq-question svg {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 400;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-answer p {
            padding-top: 16px;
            font-size: 15px;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: var(--gradient-primary);
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-size: 42px;
            margin-bottom: 16px;
        }

        .cta p {
            font-size: 20px;
            opacity: 0.9;
            margin-bottom: 40px;
        }

        .cta-pricing {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .cta-price {
            font-size: 24px;
            font-weight: 700;
        }

        .cta-divider {
            width: 1px;
            background: rgba(255,255,255,0.3);
        }

        .cta .btn-primary {
            background: var(--white);
            color: var(--primary);
            box-shadow: 0 4px 14px rgba(0,0,0,0.2);
        }

        .cta .btn-primary:hover {
            background: var(--gray-100);
        }

        .cta-trust {
            margin-top:30px;
            font-size: 14px;
            opacity: 0.8;
        }

        .cta-trust span {
            margin: 0 16px;
        }

        /* Payment Methods */
        .payment-methods {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 24px;
            margin-top: 24px;
            padding: 16px;
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius);
        }

        .payment-methods span {
            font-size: 14px;
            opacity: 0.9;
        }

        .payment-icons {
            display: flex;
            gap: 12px;
        }

        .payment-icon {
            background: var(--white);
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 14px;
            color: var(--gray-700);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--white);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand p {
            color: var(--gray-300);
            font-size: 15px;
            margin-top: 16px;
            line-height: 1.7;
        }

        .footer-links h4 {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: var(--gray-500);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 42px;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                max-width: 700px;
            }

            .pricing-card.featured {
                transform: none;
            }

            .pricing-card.featured:hover {
                transform: translateY(-4px);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .use-cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding: 60px 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero-image {
                order: -1;
            }

            .floating-badge {
                display: none;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .use-cases-grid {
                grid-template-columns: 1fr;
            }

            .social-proof-content {
                flex-direction: column;
                gap: 16px;
            }

            .cta h2 {
                font-size: 32px;
            }

            .cta-pricing {
                flex-direction: column;
                gap: 16px;
            }

            .cta-divider {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .hero-ctas {
                flex-direction: column;
            }

            .btn {
                width: 100%;
            }
        }

/* =========================
   Rooms Page Mobile Fixes
   ========================= */

@media (max-width: 768px) {

    /* Hero */
    .partner-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .partner-hero h1 {
        font-size: 30px;
        line-height: 1.2;
        text-align: center;
    }

    .partner-hero-desc {
        text-align: center;
    }

    .partner-checklist {
        align-items: center;
    }

    /* Pricing Section */
    .pricing-row {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .benefit-card1 {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }

    .cta-trust {
        font-size: 1.1rem;
        line-height: 2;
        text-align: center;
    }

    /* Hero Stats */
    .graphic-stats {
        grid-template-columns: 1fr;
    }

    .graphic-stat .stat-num {
        font-size: 22px;
    }

    /* Section Headings */
    .section-header h2 {
        font-size: 28px;
    }

    .revenue-inner h2 {
        font-size: 28px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Buttons */
    .partner-hero-ctas {
        flex-direction: column;
    }

    .p-btn {
        width: 100%;
    }
}

/* Extra Small Phones */
@media (max-width: 480px) {

    .partner-hero h1 {
        font-size: 26px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .revenue-inner h2 {
        font-size: 24px;
    }

    .benefit-card1 {
        padding: 20px;
    }

    .cta-trust {
        font-size: 1rem;
    }
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}
@media (max-width: 768px) {

    .partner-hero-graphic {
        width: 100%;
        max-width: 100%;
        padding: 20px;
        margin: 0 auto;
    }

    .partner-hero-graphic .graphic-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .graphic-stat {
        padding: 16px;
    }

    .graphic-stat .stat-num {
        font-size: 20px;
        line-height: 1.2;
    }

    .graphic-stat .stat-label {
        font-size: 12px;
    }
}
.stat-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}