/*==========================================
    StratEdge Markets Ltd - Main Stylesheet
    Colors: Navy Blue, Gold, Gray
==========================================*/

:root {
    --navy-blue: #1a237e;
    --navy-dark: #0d1b3e;
    --navy-light: #283593;
    --gold: #c5a059;
    --gold-light: #d4b374;
    --gold-dark: #b38f4a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--gray-100);
}

/*==========================================
    Navbar Styles
==========================================*/
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background: var(--navy-dark);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.navbar-brand .strate {
    color: var(--text-light);
}

.navbar-brand .edge {
    color: var(--gold);
    position: relative;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--navy-dark);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-lg);
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.8rem 0 !important;
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .login-btn-mobile {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    position: relative;
    padding: 0.5rem 0 !important;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.login-btn {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold);
    padding: 0.5rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/*==========================================
    Page Hero Section
==========================================*/
.page-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.95) 0%, rgba(13, 27, 62, 0.9) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero .hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.page-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.page-hero .hero-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

/*==========================================
    Home Page Hero Slider
==========================================*/
.hero-slider {
    height: 100vh;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(13, 27, 62, 0.85) 100%);
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.hero-slider .slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
    color: var(--gold);
}

.hero-slider .slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-slider .hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(197, 160, 89, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 1.2rem;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--gold);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
}

/*==========================================
    Buttons
==========================================*/
.btn-gold {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    cursor: pointer;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    font-weight: 600;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/*==========================================
    Section Styles
==========================================*/
.section-padding {
    padding: 100px 0;
}

.section-subtitle {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    color: var(--navy-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/*==========================================
    Card Styles
==========================================*/
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--gray-300);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--navy-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.8rem;
}

/*==========================================
    Team Cards - Fixed for Mobile
==========================================*/
.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

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

.team-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
    background: var(--navy-blue);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
    background: white;
    position: relative;
}

.team-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gold);
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
}

.team-position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/*==========================================
    Team Modal Styles - Fixed for Mobile
==========================================*/
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 62, 0.95);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}

.team-modal.show {
    display: flex;
    opacity: 1;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.team-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.team-modal.show .team-modal-content {
    transform: scale(1);
}

.team-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.team-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--gold-dark);
}

.team-modal-body {
    display: flex;
    flex-direction: row;
    max-height: 90vh;
    overflow-y: auto;
}

.team-modal-image-container {
    flex: 0 0 40%;
    position: relative;
    background: var(--navy-blue);
    min-height: 450px;
}

.team-modal-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.team-modal-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(13, 27, 62, 0.3), transparent);
    pointer-events: none;
}

.team-modal-info {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background: white;
}

.team-modal-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    line-height: 1.2;
}

.team-modal-position {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.team-modal-bio {
    margin-bottom: 2rem;
}

.team-modal-bio p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    font-size: 0.95rem;
}

.team-modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: 12px;
}

.team-modal-stat {
    text-align: center;
}

.team-modal-stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.2rem;
    line-height: 1;
}

.team-modal-stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-modal-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-modal-social a {
    width: 45px;
    height: 45px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-blue);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.2rem;
}

.team-modal-social a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/*==========================================
    Mobile Responsive for Team Section
==========================================*/
@media (max-width: 768px) {
    .team-card {
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .team-image-container {
        height: 350px;
    }
    
    .team-info {
        padding: 1.5rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-position {
        font-size: 0.85rem;
    }
    
    /* Modal Mobile Styles */
    .team-modal {
        padding: 10px;
    }
    
    .team-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .team-modal-body {
        flex-direction: column;
    }
    
    .team-modal-image-container {
        flex: 0 0 280px;
        min-height: 280px;
        width: 100%;
    }
    
    .team-modal-image {
        position: relative;
        height: 280px;
    }
    
    .team-modal-info {
        padding: 25px;
    }
    
    .team-modal-name {
        font-size: 1.5rem;
    }
    
    .team-modal-position {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .team-modal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .team-modal-stat-number {
        font-size: 1.3rem;
    }
    
    .team-modal-stat-label {
        font-size: 0.7rem;
    }
    
    .team-modal-social {
        gap: 0.8rem;
    }
    
    .team-modal-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .team-image-container {
        height: 300px;
    }
    
    .team-modal-image-container {
        flex: 0 0 220px;
        min-height: 220px;
    }
    
    .team-modal-image {
        height: 220px;
    }
    
    .team-modal-info {
        padding: 20px;
    }
    
    .team-modal-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .team-modal-stat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--gray-300);
    }
    
    .team-modal-stat:last-child {
        border-bottom: none;
    }
    
    .team-modal-stat-number {
        font-size: 1.2rem;
        margin-bottom: 0;
    }
    
    .team-modal-stat-label {
        font-size: 0.8rem;
    }
}

/* Tablet landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .team-modal-info {
        padding: 30px;
    }
    
    .team-modal-name {
        font-size: 1.8rem;
    }
    
    .team-modal-stats {
        padding: 1.2rem;
    }
}

/*==========================================
    Rank Cards
==========================================*/
.rank-card {
    border-radius: 20px;
    padding: 2rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    color: white;
    position: relative;
    overflow: hidden;
    background: var(--navy-blue);
    height: 100%;
}

.rank-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rank-card:hover::before {
    opacity: 1;
}

.rank-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.bronze { background: linear-gradient(135deg, var(--navy-blue), var(--navy-dark)); }
.silver { background: linear-gradient(135deg, var(--navy-light), var(--navy-blue)); }
.gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.platinum { background: linear-gradient(135deg, var(--gray-600), var(--gray-700)); }
.titanium { background: linear-gradient(135deg, var(--navy-dark), #000); }

/*==========================================
    Table Styles
==========================================*/
.table-custom {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: none;
}

.table-custom thead {
    background: var(--navy-blue);
    color: white;
}

.table-custom th {
    padding: 1rem;
    font-weight: 600;
    border: none;
}

.table-custom td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-300);
}

.table-custom tbody tr:hover {
    background: var(--gray-100);
}

/*==========================================
    Stats Section
==========================================*/
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/*==========================================
    Testimonial Slider
==========================================*/
.testimonial-slider {
    padding: 2rem 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin: 1rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--navy-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/*==========================================
    Accordion Styles
==========================================*/
.accordion-item {
    border: 1px solid var(--gray-300);
    border-radius: 10px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--navy-dark);
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--navy-blue);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--gold);
}

/*==========================================
    Pricing Cards
==========================================*/
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card.popular::before {
    content: 'Most Popular';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

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

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    margin: 1rem 0;
}

.pricing-period {
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--gray-600);
}

.pricing-features li i {
    color: var(--gold);
    margin-right: 0.5rem;
}

/*==========================================
    Contact Form
==========================================*/
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.form-control, .form-select {
    padding: 0.8rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/*==========================================
    Footer
==========================================*/
.footer {
    background: var(--navy-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget h5 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

/*==========================================
    WhatsApp Chat
==========================================*/
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    cursor: pointer;
}

.chat-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.chat-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.chat-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    display: none;
    overflow: hidden;
}

.chat-popup.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: #075e54;
    color: white;
    padding: 1.5rem;
}

.chat-body {
    padding: 1.5rem;
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-300);
}

/*==========================================
    YouTube Video Section
==========================================*/
.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-dark);
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: scale(1.1);
    background: var(--gold-dark);
}

/*==========================================
    Global Responsive
==========================================*/
@media (max-width: 768px) {
    .page-hero .hero-title,
    .hero-slider .slide-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }
    
    .page-hero {
        padding: 150px 0 80px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .whatsapp-chat,
    .footer,
    .btn-gold,
    .btn-outline {
        display: none !important;
    }
}