/* Custom Variables for CIE Create India Explore */
:root {
    --saffron: #ef6c00;
    --green: #2e7d32;
    --blue: #1a237e;
    --bg-dark: #0a0b10;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f5f5f7;
    --text-muted: #a1a1a6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Reset and Global Core */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 11, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--card-border);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    gap: 4px;
    flex-direction: row;
}

.mobile-header-socials {
    display: none;
}

.text-saffron { color: var(--saffron); }
.text-green { color: #4caf50; }
.text-blue { color: #5c6bc0; }

/* Nav Links & Dropdowns */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--saffron);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: 8px;
}

.social-icon {
    color: var(--text-muted);
    transition: color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.icon-youtube:hover {
    color: #ff0000;
}

.social-icon.icon-instagram:hover {
    color: #e1306c;
}

.social-icon.icon-facebook:hover {
    color: #1877f2;
}

/* Desktop Dropdown logic */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow-down {
    font-size: 8px;
    transition: transform 0.3s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #10121a;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.6);
    z-index: 1;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    top: 100%;
    left: 0;
    margin-top: 10px;
    overflow: hidden;
}

.dropdown-content a {
    color: var(--text-muted);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--saffron);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.btn-nav-contact {
    background-color: #e65100;
    color: white !important;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
    transition: transform 0.2s, background 0.3s !important;
}

.btn-nav-contact:hover {
    background-color: #ff6d00;
    transform: translateY(-2px);
}

/* Hamburger trigger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Menu Drawer Overlay */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #0a0b10;
    border-left: 1px solid var(--card-border);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-menu-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-drawer {
    background: transparent;
    border: none;
    color: white;
    font-size: 36px;
    cursor: pointer;
    line-height: 1;
}

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.2s;
}

.drawer-link:hover {
    color: var(--saffron);
}

/* Mobile Accordions */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-main);
    user-select: none;
    padding: 4px 0;
}

.accordion-header .chevron {
    font-size: 12px;
    transition: transform 0.3s;
}

.accordion.active .accordion-header .chevron {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding-left: 16px;
    margin-top: 12px;
    border-left: 2px solid rgba(239, 108, 0, 0.3);
}

.accordion.active .accordion-content {
    display: flex;
}

.drawer-sub-link {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.drawer-sub-link:hover {
    color: var(--saffron);
}

.btn-drawer-cta {
    background: linear-gradient(90deg, var(--saffron), #e65100);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
    margin-top: 20px;
}

.whatsapp-floating-btn {
    align-self: center;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    margin-top: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 108, 0, 0.08) 0%, rgba(10, 11, 16, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: -1;
    pointer-events: none;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(239, 108, 0, 0.1);
    color: var(--saffron);
    padding: 6px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(239, 108, 0, 0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--saffron), #ffd54f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 750px;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    margin-bottom: 80px;
}

.btn-primary-large {
    background: linear-gradient(90deg, var(--saffron), #e65100);
    padding: 16px 40px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(230, 81, 0, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(230, 81, 0, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--card-border);
    padding: 16px 40px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: background 0.3s, border-color 0.3s;
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.stats-row {
    display: flex;
    gap: 80px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.stat-lbl {
    font-size: 14px;
    color: var(--text-muted);
}

/* Services Section */
.services {
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
}

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

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

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

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 108, 0, 0.3);
    box-shadow: 0 12px 30px rgba(239, 108, 0, 0.1);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 24px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Creators Showcase */
.creators {
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.creator-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s;
}

.creator-card:hover {
    transform: translateY(-5px);
}

.creator-header {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.creator-platform {
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.creator-body {
    padding: 24px;
}

.creator-body h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 4px;
}

.creator-body .handle {
    color: var(--saffron);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 12px;
}

.creator-body .category {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.creator-footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
    font-size: 13px;
}

.creator-footer .label {
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

/* Contact & Form Section */
.contact {
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    border-radius: 32px;
    padding: 60px;
    backdrop-filter: blur(20px);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 40px;
}

.contact-meta p {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text-main);
}

.campaign-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    padding: 14px 18px;
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--saffron);
}

.btn-submit {
    background: linear-gradient(90deg, var(--saffron), #e65100);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.alert {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}
.alert-success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.2);
}
.alert-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Page WhatsApp Floating button */
.wa-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s;
}

.wa-floating-btn:hover {
    transform: scale(1.1);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--saffron);
}

/* Strategy Section Styling */
.strategy-section {
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
    background: radial-gradient(ellipse at center, rgba(239, 108, 0, 0.03) 0%, rgba(10, 11, 16, 0) 70%);
}

.strategy-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.strategy-left h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.strategy-accordions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strategy-acc {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 20px 24px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.strategy-acc.active {
    border-color: rgba(239, 108, 0, 0.3);
    box-shadow: 0 4px 20px rgba(239, 108, 0, 0.05);
}

.strategy-acc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.strategy-acc-header .sign {
    font-size: 24px;
    font-weight: 700;
    color: var(--saffron);
    width: 20px;
    display: inline-block;
}

.strategy-acc-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
}

.strategy-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.strategy-acc.active .strategy-acc-body {
    max-height: 200px;
    margin-top: 14px;
}

.strategy-acc-body p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Vlog Mockup GFX (Phone frames) */
.strategy-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
}

.vlog-mockup-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 100%;
}

.phone-mockup {
    position: absolute;
    width: 220px;
    height: 380px;
    background: #000;
    border-radius: 36px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 3px solid var(--card-border);
}

.phone-inner {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    background: linear-gradient(to bottom, #151821, #0b0c10);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.phone-1 {
    top: 0;
    left: 0;
    z-index: 2;
}

.phone-2 {
    bottom: 0;
    right: 0;
    z-index: 1;
}

.phone-screen-header {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.phone-screen-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.phone-screen-content p {
    font-size: 14px;
    font-weight: 700;
}

.vlog-preview-gfx {
    background: rgba(239, 108, 0, 0.1);
    color: var(--saffron);
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(239, 108, 0, 0.2);
}

.flex-green {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.floating-hearts {
    font-size: 14px;
    color: #e94057;
    animation: heartFloat 3s infinite ease-in-out;
}

.stats-badge {
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    color: var(--gold);
    border: 1px solid var(--card-border);
}

@keyframes heartFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

/* Call Floating Button */
.call-floating-btn {
    position: fixed;
    bottom: 105px;
    right: 30px;
    background-color: var(--saffron);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(239, 108, 0, 0.4);
    z-index: 999;
    transition: transform 0.3s;
}

.call-floating-btn:hover {
    transform: scale(1.1);
}

/* Policy and Contact Pages Styles */
.policy-page, .contact-page {
    min-height: 70vh;
}

/* Guarantee text wrapping inside all cards and boxes to prevent layout overflow */
.contact-form-card, .creator-card, .service-card, .contact-card, .policy-box, .lead-card {
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.policy-box {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 24px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.8;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s, border-color 0.3s;
}

.contact-card:hover {
    border-color: rgba(239, 108, 0, 0.3);
    transform: translateY(-2px);
}

.contact-form-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 24px;
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
    .stats-row {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .contact-box {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 16px;
    }
    .logo-icon {
        width: 26px;
        height: 26px;
    }
    .logo-text {
        font-size: 13px;
        gap: 3px;
    }
    .mobile-header-socials {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-left: auto;
        margin-right: 16px;
    }
    .mobile-header-socials .social-icon {
        color: var(--text-muted);
    }
    .mobile-menu-drawer {
        padding: 20px 16px;
        max-width: 320px;
    }
    .drawer-header {
        margin-bottom: 24px;
    }
    .drawer-link {
        font-size: 18px;
    }
    .accordion-header {
        font-size: 18px;
    }
    .drawer-sub-link {
        font-size: 15px;
    }
    .btn-drawer-cta {
        padding: 12px;
        font-size: 15px;
        margin-top: 10px;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero p {
        font-size: 16px;
        margin-bottom: 32px;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 60px;
    }
    .btn-primary-large, .btn-secondary-large {
        width: 100%;
        text-align: center;
    }
    .stats-row {
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }
    .stat-item {
        align-items: center;
    }
    
    /* Strategy Section Mobile */
    .strategy-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .strategy-left h2 {
        font-size: 28px;
        text-align: center;
    }
    .strategy-right {
        height: 340px;
    }
    .vlog-mockup-container {
        max-width: 320px;
        margin: 0 auto;
        height: 100%;
    }
    .phone-mockup {
        width: 160px;
        height: 280px;
        border-radius: 24px;
        padding: 6px;
    }
    .phone-inner {
        border-radius: 18px;
        padding: 12px;
    }
    .phone-screen-header {
        font-size: 8px;
    }
    .phone-screen-content {
        gap: 8px;
    }
    .phone-screen-content p {
        font-size: 11px;
    }
    .vlog-preview-gfx {
        padding: 6px 10px;
        font-size: 9px;
        border-radius: 8px;
    }
    .phone-1 {
        top: 0;
        left: 10px;
    }
    .phone-2 {
        bottom: 0;
        right: 10px;
    }
    .floating-hearts {
        font-size: 11px;
    }
    .stats-badge {
        padding: 2px 6px;
        font-size: 9px;
        border-radius: 6px;
    }

    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }
    
    /* Section Headers */
    .section-header h2 {
        font-size: 32px;
    }
    
    /* Policy Pages Mobile */
    .policy-box {
        padding: 24px 20px;
        font-size: 15px;
    }
    .policy-page h1 {
        font-size: 36px !important;
    }
    .policy-box h2 {
        font-size: 20px !important;
        margin: 24px 0 12px 0 !important;
    }
    
    /* Floating Buttons Mobile Adjustments */
    .wa-floating-btn, .call-floating-btn {
        width: 50px;
        height: 50px;
        right: 20px;
    }
    .wa-floating-btn {
        bottom: 20px;
    }
    .call-floating-btn {
        bottom: 85px;
    }
    .wa-floating-btn svg {
        width: 26px;
        height: 26px;
    }
    .call-floating-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .creators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-box {
        padding: 24px 20px;
    }
    .contact-form-card {
        padding: 24px 20px;
    }
    .contact-card {
        padding: 20px;
    }
    .logo-text {
        font-size: 14px;
        gap: 2px;
    }
    .hero h1 {
        font-size: 28px !important;
        letter-spacing: -0.5px;
    }
    .contact-info h2 {
        font-size: 26px !important;
    }
}

@media (max-width: 380px) {
    .logo-text {
        display: none; /* Hide the text label on very small screens to fit the hamburger trigger */
    }
}

/* SEO Case Studies & B2B Success Stories Showcase */
.seo-showcase {
    padding: 100px 0;
    border-top: 1px solid var(--card-border);
    background: linear-gradient(180deg, rgba(10, 11, 16, 0) 0%, rgba(239, 108, 0, 0.02) 50%, rgba(10, 11, 16, 0) 100%);
    position: relative;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.seo-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.seo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 108, 0, 0.25);
    box-shadow: 0 15px 30px rgba(239, 108, 0, 0.08);
}

.seo-card-header {
    margin-bottom: 20px;
}

.seo-card-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.seo-card-badge.ev {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.seo-card-badge.mfg {
    background: rgba(0, 188, 212, 0.1);
    color: #00bcd4;
    border: 1px solid rgba(0, 188, 212, 0.2);
}

.seo-card-badge.reach {
    background: rgba(239, 108, 0, 0.1);
    color: var(--saffron);
    border: 1px solid rgba(239, 108, 0, 0.2);
}

.seo-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.seo-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.seo-card-footer {
    margin-top: 24px;
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.seo-card-footer strong {
    color: white;
}
