/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-blue: #1a2b4d;
    --dark-blue-light: #2a3b5d;
    --yellow: #FFC107;
    --yellow-dark: #FFB300;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --text-dark: #1a2b4d;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

/* Skip to Content Link (Accessibility) */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--yellow);
    color: var(--dark-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top:focus {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

/* Improved Focus States for Accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
    background: var(--light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--dark-blue);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--yellow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h2 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--yellow);
}

.nav-link i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    min-width: 200px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--yellow);
    padding-left: 2rem;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3b5d 50%, #3a4b6d 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    text-align: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s both;
    color: var(--white);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-quick-links {
    margin-top: 3rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.hero-quick-links .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-youtube {
    background: var(--yellow);
    color: var(--dark-blue);
}

.btn-youtube:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

.btn-instagram {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-instagram:hover {
    background: var(--white);
    color: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark-blue);
    border: none;
}

.btn-primary:hover {
    background: var(--yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Journey Section */
.journey {
    background: var(--light-gray);
    padding: 80px 0;
}

.journey-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.journey-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.journey-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.journey-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2rem;
}

.journey-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.journey-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--yellow);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.journey-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.journey-content p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    background: var(--light-gray);
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--yellow);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card-content {
    color: var(--text-light);
    line-height: 1.8;
}

.card-content p {
    margin-bottom: 1rem;
}

/* Grid Layouts */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Form Styles */
.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Table Styles */
.table-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: var(--dark-blue);
    color: var(--white);
    font-weight: 600;
}

td {
    color: var(--text-dark);
}

tr:hover {
    background: var(--light-gray);
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-link:hover {
    color: var(--yellow-dark);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--dark-blue);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-blue);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid var(--yellow);
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 0;
        width: 100%;
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin: 0;
        padding: 0;
        background: rgba(0, 0, 0, 0.2);
        border: none;
        border-radius: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 0.75rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid,
    .grid-2,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* Social Proof Section */
.social-proof-section {
    background: var(--white);
    padding: 80px 0;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    background: var(--dark-blue);
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.youtube-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: none;
}

.video-placeholder {
    background: var(--dark-blue);
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Blogs Section */
.blogs-section {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Blog Landing Page Styles */
.blog-hero {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.blog-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.blog-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.blog-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

.intro-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.intro-text {
    text-align: left;
    margin-top: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.intro-cta {
    margin-top: 2rem;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.category-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
}

.category-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-topics {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.category-topics li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.category-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 600;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.category-link:hover {
    gap: 1rem;
    color: var(--yellow-dark);
}

/* Blog CTA Section */
.blog-cta-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.blog-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.blog-cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.blog-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for blog landing page */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.4rem;
    }

    .blog-hero-description {
        font-size: 1.1rem;
    }

    .blog-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .intro-card {
        padding: 2rem 1.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .blog-cta-title {
        font-size: 2rem;
    }

    .blog-cta-subtitle {
        font-size: 1.1rem;
    }

    .blog-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .blog-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Resume Builder Section */
.resume-builder-section {
    background: var(--white);
    padding: 80px 0;
}

/* Resume Builder Page Styles */
.resume-hero {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.resume-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.resume-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.resume-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-weight: 400;
}

.resume-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.resume-hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.resume-hero-stats .stat-item i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.resume-cta-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Steps Container */
.steps-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.step-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.step-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Resume Form Styles */
/* Resume Builder Wrapper */
.resume-builder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.resume-form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-height: 90vh;
    overflow-y: auto;
}

.resume-preview-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.preview-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-header h3 i {
    color: var(--yellow);
}

.resume-preview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    min-height: 400px;
}

.preview-placeholder {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.preview-placeholder i {
    font-size: 4rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Resume Template Styles */
.resume-template {
    background: var(--white);
    padding: 2.5rem;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.resume-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--yellow);
}

.resume-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.resume-contact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: var(--yellow);
    font-size: 0.85rem;
}

.resume-section {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-content {
    color: var(--text-dark);
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 0.75rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.info-item {
    font-size: 0.95rem;
}

.info-item strong {
    color: var(--dark-blue);
    margin-right: 0.5rem;
}

/* Template Selection Section */
.template-selection-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.template-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 3px solid transparent;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
}

.template-preview {
    background: #f8f9fa;
    padding: 2rem;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.template-preview-content {
    width: 100%;
    max-width: 200px;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: scale(0.8);
}

.professional-template .template-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
}

.professional-template .template-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.professional-template .template-contact {
    font-size: 0.7rem;
    color: var(--text-light);
}

.professional-template .template-section {
    margin-top: 0.75rem;
}

.professional-template .template-section-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.professional-template .template-line {
    height: 0.5rem;
    background: #e0e0e0;
    margin-bottom: 0.25rem;
    border-radius: 2px;
}

.professional-template .template-line.short {
    width: 60%;
}

.modern-template .template-header-modern {
    border-left: 4px solid var(--yellow);
    padding-left: 0.75rem;
    margin-bottom: 1rem;
}

.modern-template .template-name-modern {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.modern-template .template-contact-modern {
    font-size: 0.65rem;
    color: var(--text-light);
}

.modern-template .template-section-modern {
    margin-top: 0.75rem;
}

.modern-template .template-section-title-modern {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.modern-template .template-line-modern {
    height: 0.4rem;
    background: #e0e0e0;
    margin-bottom: 0.25rem;
    border-radius: 2px;
}

.modern-template .template-line-modern.short {
    width: 70%;
}

.ats-template .template-header-ats {
    text-align: left;
    margin-bottom: 1rem;
}

.ats-template .template-name-ats {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.ats-template .template-contact-ats {
    font-size: 0.65rem;
    color: var(--text-light);
}

.ats-template .template-section-ats {
    margin-top: 0.75rem;
}

.ats-template .template-section-title-ats {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ats-template .template-line-ats {
    height: 0.4rem;
    background: #e0e0e0;
    margin-bottom: 0.25rem;
    border-radius: 2px;
}

.ats-template .template-line-ats.short {
    width: 50%;
}

.simple-template .template-header-simple {
    text-align: center;
    margin-bottom: 1rem;
}

.simple-template .template-name-simple {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.simple-template .template-contact-simple {
    font-size: 0.65rem;
    color: var(--text-light);
}

.simple-template .template-section-simple {
    margin-top: 0.75rem;
}

.simple-template .template-section-title-simple {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.simple-template .template-line-simple {
    height: 0.4rem;
    background: #e0e0e0;
    margin-bottom: 0.25rem;
    border-radius: 2px;
}

.simple-template .template-line-simple.short {
    width: 65%;
}

.template-info {
    padding: 1.5rem;
}

.template-info .template-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.template-info .template-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.template-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.template-badge.ats-badge {
    background: #28a745;
    color: var(--white);
}

.template-select-btn {
    width: 100%;
    padding: 0.875rem;
    font-weight: 600;
}

/* Progress Bar */
.builder-progress {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.progress-step:first-child::before {
    display: none;
}

.progress-step.active::before,
.progress-step.active ~ .progress-step::before {
    background: var(--yellow);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--yellow);
    color: var(--dark-blue);
    transform: scale(1.1);
}

.step-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--text-dark);
    font-weight: 600;
}

.progress-bar {
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 16.66%;
}

/* Form Header */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Form Section Active State */
.form-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.resume-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.resume-form {
    background: transparent;
    padding: 0;
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-section-title i {
    color: var(--yellow);
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-actions {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.btn-large {
    padding: 16px 50px;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive adjustments for resume builder */
@media (max-width: 768px) {
    .resume-hero-title {
        font-size: 2.5rem;
    }

    .resume-hero-subtitle {
        font-size: 1.2rem;
    }

    .resume-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .resume-builder-wrapper {
        grid-template-columns: 1fr;
    }

    .resume-preview-section {
        position: relative;
        top: 0;
        margin-top: 2rem;
    }

    .resume-form {
        padding: 2rem 1.5rem;
    }

    .template-grid {
        grid-template-columns: 1fr;
    }

    .progress-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-step {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .step-label {
        font-size: 0.75rem;
    }
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.success-message.show {
    transform: translateX(0);
}

.success-message i {
    font-size: 1.2rem;
}

/* Form Error States */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Interview Venues Section */
.interview-venues-section {
    background: var(--light-gray);
    padding: 80px 0;
}

/* Interview Venues Page Styles */
.venues-hero {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.venues-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.venues-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.venues-hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 400;
}

.venues-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
}

.filter-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.airline-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--yellow);
    color: var(--dark-blue);
}

.filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark-blue);
    font-weight: 600;
}

/* Airline Section */
.airline-section {
    margin-bottom: 4rem;
}

.airline-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.airline-logo-large {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    flex-shrink: 0;
}

.airline-name {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.airline-website {
    color: var(--text-light);
    font-size: 1rem;
}

.airline-website a {
    color: var(--yellow);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.airline-website a:hover {
    color: var(--yellow-dark);
}

/* City Cards */
.city-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.city-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--yellow);
}

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.city-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-name i {
    color: var(--yellow);
}

.status-badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: var(--yellow-dark);
}

.status-badge.active {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
}

.status-badge.completed {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
}

.venue-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.venue-details p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.venue-details i {
    color: var(--yellow);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.venue-details strong {
    color: var(--text-dark);
    margin-right: 0.5rem;
}

.date-placeholder {
    color: var(--yellow);
    font-weight: 600;
    font-style: italic;
}

.venue-notes {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.tip-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive adjustments for interview venues */
@media (max-width: 768px) {
    .venues-hero-title {
        font-size: 2.5rem;
    }

    .venues-hero-subtitle {
        font-size: 1.4rem;
    }

    .venues-hero-description {
        font-size: 1.1rem;
    }

    .airline-filters {
        justify-content: center;
    }

    .filter-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }

    .airline-header {
        flex-direction: column;
        text-align: center;
    }

    .airline-name {
        font-size: 2rem;
    }

    .city-cards {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

.airline-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.airline-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.airline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.airline-logo {
    margin-bottom: 1.5rem;
}

.airline-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.venue-info {
    text-align: left;
    margin-bottom: 1rem;
}

.venue-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.venue-note {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Crew Booklet Section */
.crew-booklet-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.booklet-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 193, 7, 0.3);
}

.product-details h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.booklet-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.booklet-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.booklet-features i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.product-cta {
    margin-top: 2rem;
}

.coming-soon-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Collaborations Section */
.collaborations-section {
    background: var(--white);
    padding: 80px 0;
}

/* Brand Collaborations Page Styles */
.collab-hero {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.collab-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.collab-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.collab-hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 400;
}

.collab-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.collab-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-box-hero {
    text-align: center;
}

.stat-box-hero h3 {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

/* Brand Showcase */
.brand-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.brand-logo-item {
    text-align: center;
}

.brand-logo-placeholder {
    background: var(--white);
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo-placeholder:hover {
    border-color: var(--yellow);
    background: rgba(255, 193, 7, 0.05);
}

.brand-logo-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.brand-logo-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.brand-category {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Testimonial Section */
.testimonial-content {
    text-align: center;
    padding: 2rem;
}

/* Collaboration Types Grid */
.collab-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.collab-type-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.collab-type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--yellow);
}

.collab-type-icon {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.collab-type-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.collab-type-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.collab-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.collab-type-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.collab-type-features i {
    color: var(--yellow);
    font-size: 0.9rem;
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.insight-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--yellow);
    padding-bottom: 0.5rem;
}

.insight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insight-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.insight-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 600;
    font-size: 1.5rem;
}

/* Media Kit Section */
.media-kit-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
}

.media-kit-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.media-kit-title {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.media-kit-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.media-kit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-kit-features li {
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.media-kit-features i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.media-kit-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-kit-preview {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 4rem 3rem;
    text-align: center;
    width: 100%;
    max-width: 350px;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Collaboration Form Container */
.collab-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.collab-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Responsive adjustments for collaborations page */
@media (max-width: 768px) {
    .collab-hero-title {
        font-size: 2.5rem;
    }

    .collab-hero-subtitle {
        font-size: 1.4rem;
    }

    .collab-hero-description {
        font-size: 1.1rem;
    }

    .collab-hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .brand-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .collab-types-grid {
        grid-template-columns: 1fr;
    }

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .media-kit-content {
        grid-template-columns: 1fr;
    }

    .collab-form {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .brand-showcase {
        grid-template-columns: 1fr;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.stat-box h4 {
    color: var(--yellow);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo-placeholder {
    background: var(--light-gray);
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.logo-placeholder:hover {
    border-color: var(--yellow);
    background: rgba(255, 193, 7, 0.05);
}

.logo-placeholder i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.logo-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 43, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-cta-section .container {
    position: relative;
    z-index: 1;
}

/* Contact Page Styles */
.contact-hero {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1rem;
    font-weight: 400;
}

.contact-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.contact-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 0;
}

/* Social Links Grid */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-link-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.social-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.social-link-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--white);
}

.social-link-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link-icon.youtube {
    background: #FF0000;
}

.social-link-icon.email {
    background: var(--yellow);
    color: var(--dark-blue);
}

.social-link-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-link-handle {
    font-size: 1.1rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-link-followers {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-link-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Modern Contact Main Section - Two Column Layout */
.contact-main-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
}

.contact-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 43, 77, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-connect-column,
.contact-form-column {
    display: flex;
    flex-direction: column;
}

.contact-connect-card,
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-connect-card::before,
.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--dark-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-connect-card:hover::before,
.contact-form-card:hover::before {
    transform: scaleX(1);
}

.contact-connect-card:hover,
.contact-form-card:hover {
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.contact-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%);
    border-radius: 2px;
}

.contact-section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

/* Social Media Items */
.contact-social-item {
    padding: 1.75rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.contact-social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 193, 7, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-social-item:hover::before {
    left: 100%;
}

.contact-social-item:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-color: var(--yellow);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}

.contact-social-item:last-child {
    margin-bottom: 0;
}

.contact-social-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.contact-social-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-social-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-social-item:hover .contact-social-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.15);
}

.contact-social-item:hover .contact-social-icon::after {
    width: 200px;
    height: 200px;
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.youtube-icon {
    background: #FF0000;
}

.email-icon {
    background: var(--yellow);
    color: var(--dark-blue);
}

.contact-social-info {
    flex: 1;
}

.contact-social-platform {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.contact-social-handle {
    font-size: 1rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-social-handle::before {
    content: '@';
    opacity: 0.7;
}

.contact-social-stats {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-social-stats::before {
    content: '✓';
    color: var(--yellow);
    font-weight: 700;
}

.btn-social {
    width: 100%;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-social::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-social:hover::before {
    width: 300px;
    height: 300px;
}

.btn-social:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Modern Form Styles */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group-modern {
    position: relative;
}

.form-group-modern label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 0.5rem;
}

.form-group-modern label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--yellow);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group-modern:focus-within label::before {
    opacity: 1;
}

.form-input-modern {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(224, 224, 224, 0.8);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    backdrop-filter: blur(10px);
}

.form-input-modern:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 0 0 4px rgba(255, 193, 7, 0.1),
        0 4px 12px rgba(255, 193, 7, 0.15);
    transform: translateY(-2px);
}

.form-input-modern:hover:not(:focus) {
    border-color: rgba(255, 193, 7, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.form-input-modern::placeholder {
    color: #b0b0b0;
}

.form-textarea-modern {
    resize: vertical;
    min-height: 140px;
    font-family: 'Poppins', sans-serif;
}

.form-select-modern {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a2b4d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-actions-modern {
    margin-top: 0.5rem;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 193, 7, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-submit:active {
    transform: translateY(-2px) scale(1);
}

.form-note-modern {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Form Error States */
.form-group-modern input.error,
.form-group-modern textarea.error,
.form-group-modern select.error {
    border-color: #E91E63;
    background-color: rgba(233, 30, 99, 0.05);
}

.form-group-modern input.error:focus,
.form-group-modern textarea.error:focus,
.form-group-modern select.error:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group-modern .error-message {
    display: block;
    color: #E91E63;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group-modern .char-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.form-group-modern .char-count.over-limit {
    color: #E91E63;
}

/* Quick Contact */
.quick-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Form Validation Styles */
.form-group {
    position: relative;
}

.error-message {
    display: none;
    color: #E91E63;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #E91E63;
    background-color: rgba(233, 30, 99, 0.05);
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.char-count.over-limit {
    color: #E91E63;
}

.char-count.over-limit span {
    font-weight: 600;
}

/* Responsive adjustments for contact page */
@media (max-width: 968px) {
    .contact-main-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-connect-card,
    .contact-form-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.4rem;
    }

    .contact-hero-description {
        font-size: 1.1rem;
    }

    .contact-main-section {
        padding: 2rem 0;
    }

    .contact-section-title {
        font-size: 1.75rem;
    }

    .contact-social-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .social-links-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-connect-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-section-title {
        font-size: 1.5rem;
    }

    .contact-social-item {
        padding: 1.25rem;
    }
}

/* About Page Styles */
.page-hero {
    background: var(--dark-blue);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Modern About Page Styles */
.about-intro-modern {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 0;
}

.intro-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.intro-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--dark-blue) 100%);
}

.intro-card-modern:hover {
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.intro-icon-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.3);
    transition: all 0.4s ease;
}

.intro-card-modern:hover .intro-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 193, 7, 0.4);
}

.intro-text-modern {
    text-align: center;
}

.section-heading-modern {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--dark-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-heading-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, transparent 100%);
    border-radius: 2px;
}

.lead-text-modern {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.intro-text-secondary {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Modern Card Grid */
.grid-2-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Modern Card Design */
.card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--dark-blue) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-modern:hover::before {
    transform: scaleX(1);
}

.card-modern:hover {
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
}

.card-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 193, 7, 0.3);
    transition: all 0.4s ease;
}

.card-modern:hover .card-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 193, 7, 0.4);
}

.youtube-icon-modern {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    color: var(--white);
}

.instagram-icon-modern {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.card-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content-modern {
    flex: 1;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.card-content-modern p {
    margin-bottom: 1rem;
}

.card-list-modern {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.card-list-modern li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.card-list-modern li i {
    color: var(--yellow);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.card-note-modern {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 193, 7, 0.2);
    font-style: italic;
    color: var(--text-light);
}

/* Featured Card */
.card-featured {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3b5d 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 12px 48px rgba(26, 43, 77, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    color: var(--white);
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.card-featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 16px 64px rgba(26, 43, 77, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
}

.card-featured-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.card-featured-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.card-featured-content {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    font-size: 1.1rem;
}

.card-featured-content p {
    margin-bottom: 1rem;
}

/* Template-Specific Resume Styles */
.modern-resume .resume-header-modern {
    border-left: 4px solid var(--yellow);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.modern-resume .resume-name-modern {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.modern-resume .resume-contact-modern {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.modern-resume .resume-contact-modern span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-resume .resume-section-modern {
    margin-bottom: 1.5rem;
}

.modern-resume .section-title-modern {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--yellow);
}

.modern-resume .section-content-modern {
    color: var(--text-dark);
    line-height: 1.8;
}

.ats-resume .resume-header-ats {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #333;
}

.ats-resume .resume-name-ats {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ats-resume .resume-contact-ats {
    font-size: 0.85rem;
    color: var(--text-light);
}

.ats-resume .resume-section-ats {
    margin-bottom: 1.5rem;
}

.ats-resume .section-title-ats {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #333;
    padding-bottom: 0.25rem;
}

.ats-resume .section-content-ats {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

.simple-resume .resume-header-simple {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.simple-resume .resume-name-simple {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.simple-resume .resume-contact-simple {
    font-size: 0.9rem;
    color: var(--text-light);
}

.simple-resume .resume-section-simple {
    margin-bottom: 1.5rem;
}

.simple-resume .section-title-simple {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #e0e0e0;
}

.simple-resume .section-content-simple {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Career Timeline */
.career-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background: var(--yellow);
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-date {
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Mentorship Reasons */
.mentorship-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-card h4 {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-resources {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 3rem;
}

.resource-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.resource-link {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-link:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: var(--yellow);
    transform: translateY(-3px);
}

.resource-link i {
    font-size: 1.5rem;
    color: var(--yellow);
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.2rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.1rem;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-item:not(:last-child)::after {
        display: none;
    }

    .section-heading-modern {
        font-size: 2rem;
    }

    .lead-text-modern {
        font-size: 1.1rem;
    }

    .grid-2-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-modern {
        padding: 2rem;
    }

    .intro-card-modern {
        padding: 2rem;
    }

    .card-featured {
        padding: 2rem;
    }

    .intro-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .card-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .timeline-marker {
        margin: 0 auto 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .resource-links {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .mentorship-reasons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
}

/* Product Sales Page Styles */
.product-hero {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #2a3b5d 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.product-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.product-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--dark-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.product-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.product-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.hero-feature i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.product-hero-cta {
    margin-top: 2rem;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 18px 50px;
}

.cta-note {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--yellow);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.problem-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.problem-description {
    color: var(--text-light);
    line-height: 1.8;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.content-icon-large {
    width: 80px;
    height: 80px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-section-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 1.5rem;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--yellow);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.achievement-item i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.achievement-item h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.achievement-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
}

.pricing-card {
    max-width: 700px;
    margin: 3rem auto 0;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.pricing-header {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem;
    text-align: center;
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 600;
}

.pricing-amount {
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    color: var(--yellow);
}

.period {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.pricing-features {
    padding: 3rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.pricing-feature span {
    color: var(--text-dark);
    font-size: 1rem;
}

.pricing-cta {
    padding: 2rem 3rem;
    background: var(--light-gray);
    text-align: center;
}

.btn-pricing {
    width: 100%;
    font-size: 1.2rem;
    padding: 18px;
}

.pricing-guarantee {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-guarantee i {
    color: var(--yellow);
    margin-right: 0.5rem;
}

/* Payment Modal */
.payment-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

.payment-modal-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.payment-gateway-placeholder {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
    border: 2px dashed #e0e0e0;
}

/* FAQ Styles */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--yellow);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.faq-item.active .faq-question {
    background: var(--light-gray);
}

/* Final CTA Section */
.final-cta-section {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.final-cta-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Responsive adjustments for product page */
@media (max-width: 768px) {
    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-subtitle {
        font-size: 1.4rem;
    }

    .product-hero-description {
        font-size: 1.1rem;
    }

    .product-hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .problems-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header {
        padding: 2rem 1.5rem;
    }

    .pricing-features {
        padding: 2rem 1.5rem;
    }

    .pricing-cta {
        padding: 2rem 1.5rem;
    }

    .amount {
        font-size: 3rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
    }

    .payment-modal-content {
        padding: 2rem 1.5rem;
    }
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .journey-timeline {
        grid-template-columns: 1fr;
    }

    .product-showcase {
        grid-template-columns: 1fr;
    }

    .airline-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .logo-grid {
        grid-template-columns: 1fr;
    }
}
