/* ===============================================
   Sell My Maine House - Premium CSS
   Sophisticated Design with Navy, Teal & Gold
   =============================================== */

:root {
    /* Primary Colors */
    --primary-navy: #0a2540;
    --primary-teal: #00a896;
    --primary-gold: #f4a259;
    --accent-coral: #ff6b6b;
    
    /* Secondary Colors */
    --navy-light: #1a3a52;
    --teal-light: #02c39a;
    --teal-dark: #028174;
    --gold-light: #f8b878;
    --gold-dark: #e38b3a;
    
    /* Neutral Colors */
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --gray: #6c757d;
    --dark-gray: #343a40;
    --black: #000000;
    
    /* Gradient Variables */
    --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1a3a52 100%);
    --gradient-teal: linear-gradient(135deg, #00a896 0%, #02c39a 100%);
    --gradient-gold: linear-gradient(135deg, #f4a259 0%, #f8b878 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(10, 37, 64, 0.95) 0%, rgba(0, 168, 150, 0.85) 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-navy);
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===============================================
   Preloader
   =============================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: var(--transition-slow);
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 168, 150, 0.2);
    border-top-color: var(--primary-teal);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.preloader-content p {
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===============================================
   Top Alert Bar
   =============================================== */
.top-alert-bar {
    background: var(--gradient-gold);
    padding: 12px 0;
    position: relative;
    z-index: 1001;
}

.alert-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.alert-content i {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.btn-close-alert {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0 10px;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.btn-close-alert:hover {
    opacity: 1;
}

/* ===============================================
   Header Contact Bar
   =============================================== */
.header-contact-bar {
    background: var(--primary-navy);
    padding: 15px 0;
    color: var(--white);
    font-size: 0.9rem;
}

.contact-info-items {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.contact-item i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.contact-item:hover {
    color: var(--primary-teal);
}

.header-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-label {
    font-weight: 600;
    margin-right: 5px;
}

.header-social-links a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition-base);
}

.header-social-links a:hover {
    background: var(--primary-teal);
    transform: translateY(-3px);
}

/* ===============================================
   Main Navigation
   =============================================== */
.main-navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    z-index: 1000;
}

.main-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-lg);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-navy);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--primary-teal);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 35px;
    height: 30px;
    position: relative;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    height: 3px;
    background: var(--primary-navy);
    border-radius: 3px;
    transition: var(--transition-base);
    position: absolute;
    left: 0;
    right: 0;
}

.navbar-toggler span:nth-child(1) {
    top: 0;
}

.navbar-toggler span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler span:nth-child(3) {
    bottom: 0;
}

.navbar-nav .nav-link {
    color: var(--primary-navy);
    font-weight: 600;
    padding: 0.7rem 1.2rem;
    margin: 0 5px;
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-teal);
    background: rgba(0, 168, 150, 0.08);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.btn-nav-primary {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 0.7rem 1.8rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: none;
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-nav-primary:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Navigation Dropdown Menu */
.navbar-nav .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    padding: 15px 0;
    margin-top: 15px;
    min-width: 280px;
}

.navbar-nav .dropdown-item {
    padding: 12px 25px;
    font-weight: 600;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-base);
}

.navbar-nav .dropdown-item i {
    color: var(--primary-teal);
    font-size: 1rem;
    width: 20px;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.08), rgba(244, 162, 89, 0.08));
    color: var(--primary-teal);
    padding-left: 30px;
}

.navbar-nav .dropdown-item:active {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.12), rgba(244, 162, 89, 0.12));
    color: var(--primary-teal);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

/* ===============================================
   Hero Section with Swiper
   =============================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

.hero-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 50px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
}

.hero-badge.special {
    background: var(--gradient-teal);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 168, 150, 0.5); }
    50% { box-shadow: 0 0 30px rgba(0, 168, 150, 0.8); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: var(--shadow-xl);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-primary:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(244, 162, 89, 0.4);
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--white);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-hero-outline:hover {
    background: var(--white);
    color: var(--primary-navy);
}

.hero-trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.trust-badge i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-box i {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-family: 'Sora', sans-serif;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1rem;
}

/* Form overlaid above swiper */
.hero-section {
    position: relative;
}

.hero-form-overlay {
    position: absolute;
    top: 45%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 100;
    width: 400px;
}

.hero-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: var(--shadow-2xl);
}

.form-card-header {
    margin-bottom: 20px;
}

.form-card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.form-card-header h3 i {
    color: var(--primary-teal);
    margin-right: 6px;
}

.form-card-header p {
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.form-row-split {
    display: flex;
    gap: 10px;
}

.form-row-split .form-group {
    flex: 1;
}

.quick-offer-form .form-group {
    margin-bottom: 12px;
}

.quick-offer-form .form-control {
    padding: 10px 14px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    width: 100%;
    transition: var(--transition-base);
}

.quick-offer-form .form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 150, 0.15);
    outline: none;
}

.quick-offer-form textarea.form-control {
    resize: none;
}

.btn-form-submit {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 13px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-base);
    margin-top: 4px;
}

.btn-form-submit:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.form-privacy {
    text-align: center;
    font-size: 0.78rem;
    color: var(--gray);
    margin: 10px 0 0;
}

.form-privacy i {
    color: var(--primary-teal);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-form-overlay {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        padding: 0 20px 40px;
    }
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold);
    width: 35px;
    border-radius: 10px;
}

/* ===============================================
   Urgent CTA Bar
   =============================================== */
.urgent-cta-bar {
    background: var(--gradient-teal);
    padding: 40px 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-2xl);
}

.urgent-title {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.urgent-title i {
    color: var(--primary-gold);
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.urgent-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
}

.btn-urgent-call {
    background: var(--white);
    color: var(--primary-teal);
    padding: 16px 40px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.3rem;
    border: none;
    box-shadow: var(--shadow-lg);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-urgent-call:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.05);
}

/* ===============================================
   Section Headers
   =============================================== */
.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.1), rgba(244, 162, 89, 0.1));
    color: var(--primary-teal);
    padding: 10px 25px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    line-height: 1.8;
}

/* ===============================================
   About / Founder Section
   =============================================== */
.about-founder-section {
    padding: 90px 0 60px 0;
    background: var(--off-white);
}

.founder-image-wrapper {
    position: relative;
    padding: 30px;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-teal);
    border-radius: var(--radius-xl);
    transform: rotate(-3deg);
    z-index: 0;
}

.founder-image {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 8px solid var(--white);
}

.founder-badge-float {
    position: absolute;
    bottom: -30px;
    right: 30px;
    background: var(--white);
    padding: 25px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.badge-text h4 {
    font-size: 2rem;
    color: var(--primary-teal);
    font-weight: 900;
    margin-bottom: 5px;
    font-family: 'Sora', sans-serif;
}

.badge-text p {
    color: var(--gray);
    font-weight: 600;
    margin: 0;
}

.founder-quote-float {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--primary-navy);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 250px;
    z-index: 2;
}

.founder-quote-float i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.founder-quote-float p {
    font-style: italic;
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

.about-content {
    padding-left: 40px;
}

.founder-name {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.founder-position {
    font-size: 1.2rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 30px;
}

.founder-bio p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.founder-highlight {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.08), rgba(244, 162, 89, 0.08));
    border-left: 4px solid var(--primary-teal);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    position: relative;
}

.founder-highlight i {
    position: absolute;
    top: 20px;
    left: -15px;
    width: 35px;
    height: 35px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.founder-highlight p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-navy);
    font-weight: 600;
    margin: 0;
}

.founder-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.credential {
    background: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition-base);
}

.credential:hover {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-md);
}

.credential i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.credential span {
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
}

.about-signature {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid var(--light-gray);
}

.about-signature img {
    max-width: 250px;
}

/* ===============================================
   Services Section
   =============================================== */
.services-section {
    padding: 90px 0;
    background: var(--white);
}

.service-box {
    background: var(--off-white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-teal);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service-box:hover::before {
    transform: scaleX(1);
}

.service-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-teal);
    transform: translateY(-10px);
}

.service-box.featured {
    background: var(--gradient-teal);
    color: var(--white);
}

.service-box.featured h3,
.service-box.featured p,
.service-box.featured li {
    color: var(--white);
}

.service-box.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 6px 15px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 0;
    transition: var(--transition-slow);
}

.service-box:hover .service-icon {
    transform: rotateY(360deg);
}

.service-box h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.service-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--gray);
}

.service-features i {
    color: var(--primary-teal);
}

.service-box.featured .service-features i {
    color: var(--primary-gold);
}

.service-link {
    color: var(--primary-teal);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    gap: 12px;
    color: var(--teal-dark);
}

.service-box.featured .service-link {
    color: var(--white);
}

/* ===============================================
   Process Section
   =============================================== */
.process-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.process-timeline {
    position: relative;
    margin-top: 60px;
}

.process-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: 100%;
    border: 3px solid transparent;
    position: relative;
}

.process-card:hover,
.process-card.active {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.process-card.active {
    background: var(--gradient-teal);
    color: var(--white);
}

.process-card.active h3,
.process-card.active p,
.process-card.active li,
.process-card.active .process-time {
    color: var(--white);
}

.process-card.active .process-icon {
    background: rgba(255, 255, 255, 0.2);
}

.process-number {
    position: absolute;
    top: -25px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: var(--shadow-lg);
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
}

.process-card h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.process-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
    color: var(--gray);
    margin-bottom: 20px;
}

.process-time {
    text-align: center;
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.process-time i {
    margin-right: 8px;
}

.process-list {
    list-style: none;
    padding: 0;
}

.process-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray);
}

.process-list i {
    color: var(--primary-teal);
    font-size: 1.1rem;
}

.process-card.active .process-list i {
    color: var(--primary-gold);
}

.process-connector {
    position: absolute;
    top: 150px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-teal) 25%, var(--primary-teal) 75%, transparent);
    z-index: 0;
}

/* ===============================================
   Why Choose Us Section
   =============================================== */
.why-choose-section {
    padding: 90px 0;
    background: var(--white);
}

.why-us-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    border: 2px solid transparent;
}

.why-us-card:hover {
    background: var(--white);
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.why-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 25px;
    transition: var(--transition-slow);
}

.why-us-card:hover .why-icon {
    transform: rotateY(360deg);
    background: var(--gradient-gold);
}

.why-us-card h4 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.why-us-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray);
    margin: 0;
}

/* ===============================================
   Video Testimonial Section
   =============================================== */
.video-testimonial-section {
    padding: 90px 0;
    background: var(--gradient-primary);
}

.video-content {
    padding-right: 40px;
}

.video-content .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.video-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.video-stats {
    display: flex;
    gap: 40px;
}

.video-stat {
    text-align: center;
}

.video-stat h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.video-stat p {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.video-wrapper {
    position: relative;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   Testimonials Section
   =============================================== */
.testimonials-section {
    padding: 90px 0;
    background: var(--off-white);
}

.testimonials-swiper {
    padding: 40px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 45px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    height: auto;
    min-height: 400px;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid var(--primary-teal);
}

.testimonial-info h4 {
    font-size: 1.4rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.rating {
    color: var(--primary-gold);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-quote {
    position: absolute;
    bottom: 25px;
    right: 30px;
    font-size: 5rem;
    color: rgba(0, 168, 150, 0.08);
}

.btn-primary-custom {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 16px 45px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: var(--shadow-md);
    display: inline-block;
}

.btn-primary-custom:hover {
    background: var(--gradient-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===============================================
   FAQ Section
   =============================================== */
.faq-section {
    padding: 90px 0;
    background: var(--white);
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.faq-accordion .accordion-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-accordion .accordion-button {
    background: var(--off-white);
    color: var(--primary-navy);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-accordion .accordion-button i {
    color: var(--primary-teal);
    font-size: 1.3rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--gradient-teal);
    color: var(--white);
}

.faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--primary-gold);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300a896'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f4a259'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 30px;
    background: var(--white);
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray);
}

/* ===============================================
   Contact / Offer Form Section
   =============================================== */
.contact-offer-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.contact-info-section .lead {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-info-cards {
    margin-bottom: 50px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.info-content a {
    color: var(--primary-teal);
    font-weight: 700;
    font-size: 0.92rem;
    display: block;
    margin-bottom: 5px;
}

.info-content a:hover {
    color: var(--teal-dark);
}

.info-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.trust-seals h5 {
    font-size: 1.2rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.seals-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.seal {
    background: var(--white);
    padding: 20px 15px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.seal i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 10px;
}

.seal span {
    display: block;
    font-weight: 700;
    color: var(--primary-navy);
    font-size: 0.85rem;
}

.offer-form-wrapper {
    background: var(--white);
    padding: 50px 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

.form-header h3 {
    font-size: 2.2rem;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.form-floating label {
    color: var(--gray);
    font-weight: 600;
}

.form-floating label i {
    color: var(--primary-teal);
    margin-right: 8px;
}

.form-control,
.form-select {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 150, 0.15);
}

.btn-form-submit-main {
    background: var(--gradient-teal);
    color: var(--white);
    padding: 18px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.2rem;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
}

.btn-form-submit-main:hover {
    background: var(--gradient-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 20px;
    line-height: 1.6;
}

.form-disclaimer i {
    color: var(--primary-teal);
    margin-right: 5px;
}

/* ===============================================
   Footer
   =============================================== */
.main-footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.footer-brand h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.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);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-teal);
    transform: translateY(-5px);
}

.footer-widget h5 {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-teal);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--primary-gold);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--primary-teal);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-links a:hover {
    color: var(--primary-teal);
}

/* ===============================================
   Scroll to Top Button
   =============================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-teal);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    cursor: pointer;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gradient-gold);
    transform: translateY(-5px);
}

/* ===============================================
   Floating Action Buttons
   =============================================== */
.floating-actions {
    position: fixed;
    left: 30px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    animation: float 3s ease-in-out infinite;
}

.fab-phone {
    background: var(--gradient-gold);
}

.fab-offer {
    background: var(--gradient-teal);
}

.fab-button:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-2xl);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===============================================
   Responsive Design
   =============================================== */
@media (max-width: 1199px) {
    .process-connector {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .founder-credentials {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   Form Section Headers & Enhanced Styles
   =============================================== */
.form-section-header {
    background: linear-gradient(135deg, rgba(0, 168, 150, 0.08), rgba(244, 162, 89, 0.08));
    padding: 20px 25px;
    border-radius: var(--radius-md);
    margin: 35px 0 25px;
    border-left: 4px solid var(--primary-teal);
}

.form-section-header h4 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-header h4 i {
    color: var(--primary-teal);
    font-size: 1.5rem;
}

.form-label {
    color: var(--primary-navy);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.form-label.fw-bold {
    font-weight: 700;
    font-size: 1.05rem;
}

.form-check {
    padding: 10px 0 10px 30px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.15em;
    border: 2px solid var(--light-gray);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.form-check-input[type="checkbox"]:checked {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.form-check-label {
    color: var(--gray);
    font-size: 1rem;
    margin-left: 10px;
    cursor: pointer;
}

.main-offer-form textarea.form-control {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-base);
    resize: vertical;
}

.main-offer-form textarea.form-control:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 150, 0.15);
}

.main-offer-form .form-check-input:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 150, 0.15);
}

.main-offer-form input[type="text"].form-control,
.main-offer-form input[type="tel"].form-control,
.main-offer-form input[type="email"].form-control {
    padding: 15px 20px;
}

.main-offer-form .mb-4 {
    background: var(--off-white);
    padding: 20px !important;
    border-radius: var(--radius-md);
    margin-bottom: 25px !important;
}

.main-offer-form .form-floating.mb-4 {
    background: transparent;
    padding: 0;
}

@media (max-width: 767px) {
    .top-alert-bar {
        padding: 10px 0;
    }
    
    .alert-content {
        flex-direction: column;
        font-size: 0.85rem;
    }
    
    .header-contact-bar {
        text-align: center;
        padding: 12px 0;
    }
    
    .contact-info-items {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-social-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .hero-swiper {
        height: auto;
        min-height: 650px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-form-card {
        position: static;
        margin-top: 30px;
    }
    
    .urgent-title {
        font-size: 1.6rem;
        text-align: center;
    }
    
    .urgent-text {
        text-align: center;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .video-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .seals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-actions {
        left: 20px;
        bottom: 80px;
    }
    
    .fab-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .form-section-header {
        padding: 15px 20px;
    }
    
    .form-section-header h4 {
        font-size: 1.2rem;
    }
}
.video-commercial-section {
    background: var(--gradient-primary);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.video-commercial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 120, 255, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0, 200, 150, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.video-commercial-section .section-label {
    display: inline-block;
    background: rgba(0, 150, 255, 0.15);
    color: #4fc3f7;
    border: 1px solid rgba(79, 195, 247, 0.3);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.video-commercial-section .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.video-commercial-section .video-description {
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.7;
}

/* Video Cards */
.video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 195, 247, 0.35);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0a1628;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.video-card-body {
    padding: 18px 20px;
}

.video-card-body h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 1rem;
}

.video-card-body p {
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Stats */
.video-stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.video-stat h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #4fc3f7;
    margin-bottom: 4px;
}

.video-stat p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Modal */
#videoModal .modal-content {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

#videoModal .modal-header {
    padding: 16px 20px 8px;
}

#videoModal video {
    display: block;
    background: #000;
}