/**
 * Gem On Purpose Coaching Company (GOPCC)
 * Main Stylesheet
 * 
 * Brand Colors:
 * - Velvet: #1E2E52 (Primary)
 * - Silk: #EDE5DA (Secondary/Background)
 * - Onyx: #000000 (Text/Dark)
 */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    /* Brand Colors */
    --velvet: #1E2E52;
    --velvet-dark: #151F3A;
    --velvet-light: #2A3D6B;
    --silk: #EDE5DA;
    --silk-dark: #D9CFC3;
    --silk-light: #F5F0E8;
    --onyx: #000000;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-primary: #000000;
    --text-secondary: #4A4A4A;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    
    /* Status Colors */
    --success: #2E7D5A;
    --warning: #D97706;
    --error: #B91C1C;
    --info: #1E2E52;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
}

/* ============================================
   Base Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--velvet);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--velvet);
    text-decoration: none;
    transition: var(--transition-normal);
}

a:hover {
    color: var(--velvet-light);
}

img {
    max-width: 100%;
    height: auto;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
}

/* Background Colors */
.bg-velvet { background-color: var(--velvet) !important; }
.bg-silk { background-color: var(--silk) !important; }
.bg-onyx { background-color: var(--onyx) !important; }
.bg-white { background-color: var(--white) !important; }

/* Text Colors */
.text-velvet { color: var(--velvet) !important; }
.text-silk { color: var(--silk) !important; }
.text-onyx { color: var(--onyx) !important; }

/* Section Padding */
.section-padding {
    padding: var(--section-padding) 0;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--velvet);
    border-color: var(--velvet);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--velvet-dark);
    border-color: var(--velvet-dark);
    color: var(--white);
}

.btn-outline-primary {
    background-color: transparent;
    border-color: var(--velvet);
    color: var(--velvet);
}

.btn-outline-primary:hover {
    background-color: var(--velvet);
    color: var(--white);
}

.btn-cta {
    background-color: var(--silk);
    border-color: var(--silk);
    color: var(--velvet);
}

.btn-cta:hover {
    background-color: var(--silk-dark);
    border-color: var(--silk-dark);
    color: var(--velvet);
}

.btn-outline-light {
    border-color: var(--silk);
    color: var(--silk);
}

.btn-outline-light:hover {
    background-color: var(--silk);
    color: var(--velvet);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 12px;
}

/* ============================================
   Navigation
   ============================================ */
.site-header {
    position: relative;
    z-index: 1000;
}

.navbar {
    background-color: var(--velvet);
    padding: 15px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    background-color: var(--velvet-dark);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-brand .logo-accent {
    color: var(--silk);
    font-weight: 400;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px !important;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--silk) !important;
}

.navbar .btn-cta {
    padding: 10px 24px;
    font-size: 13px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 120px 0 80px;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Hero Media (Image/Video/YouTube) */
.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* YouTube Background */
.hero-youtube-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-youtube-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh; /* 16:9 aspect ratio */
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw; /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Default Background (when no slides) */
.hero-default-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--velvet) 0%, var(--velvet-dark) 100%);
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--silk);
    margin-bottom: 2rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Navigation */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--silk);
    width: 30px;
    border-radius: 6px;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 20;
}

.hero-scroll a {
    color: var(--silk);
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--velvet) 0%, var(--velvet-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--silk);
    font-size: 1.1rem;
}

.page-hero .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    margin-top: 1rem;
}

.page-hero .breadcrumb-item a {
    color: var(--silk);
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--velvet);
    margin-bottom: 0.75rem;
    padding: 6px 16px;
    background-color: rgba(30, 46, 82, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Program Cards
   ============================================ */
.program-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    padding: 30px;
    text-align: center;
    color: var(--white);
}

.program-icon i {
    font-size: 48px;
}

.program-content {
    padding: 25px;
    text-align: center;
}

.program-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.program-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Program Card Large */
.program-card-large {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.program-card-large .program-header {
    padding: 30px;
    color: var(--white);
    text-align: center;
}

.program-icon-lg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.program-icon-lg i {
    font-size: 36px;
}

.program-card-large .program-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.program-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.program-body {
    padding: 30px;
}

.program-benefits {
    margin: 20px 0;
}

.program-benefits h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.program-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-benefits li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.program-benefits li i {
    color: var(--success);
    margin-right: 10px;
}

.program-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* ============================================
   Milestones Section
   ============================================ */
.milestones-section {
    background: var(--velvet);
    padding: 60px 0;
}

.milestone-card {
    color: var(--white);
    padding: 20px;
}

.milestone-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.milestone-icon i {
    font-size: 24px;
    color: var(--silk);
}

.milestone-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--silk);
    margin-bottom: 5px;
}

.milestone-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.testimonial-quote {
    color: var(--velvet);
    font-size: 32px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.testimonial-text p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--velvet);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.testimonial-info h5 {
    font-size: 15px;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
    font-style: normal;
}

.testimonial-rating {
    margin-top: 15px;
}

.testimonial-rating i {
    color: #ddd;
    font-size: 14px;
}

.testimonial-rating i.active {
    color: #F59E0B;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: var(--velvet);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--velvet);
    padding: 80px 0;
    position: relative;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--silk);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    margin-bottom: 0.5rem;
}

.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--velvet);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: #25D366;
}

.contact-details h5 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 0;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--silk-dark);
}

.contact-social h5 {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--silk);
    color: var(--velvet);
    font-size: 18px;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--velvet);
    color: var(--white);
}

.social-link.instagram:hover { background: #E4405F; }
.social-link.linkedin:hover { background: #0A66C2; }
.social-link.youtube:hover { background: #FF0000; }
.social-link.twitter:hover { background: #1DA1F2; }

.quick-response-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.qr-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.qr-content h5 {
    margin-bottom: 5px;
}

.qr-content p {
    font-size: 13px;
    margin-bottom: 10px;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
    background: var(--onyx);
    color: var(--white);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: var(--silk);
    font-weight: 400;
}

.footer-tagline {
    color: var(--silk);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--silk);
    color: var(--velvet);
}

.footer-title {
    color: var(--silk);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition-fast);
}

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

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--silk);
    margin-top: 3px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--silk);
}

.footer-newsletter {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.newsletter-form .input-group {
    max-width: 450px;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.footer-stats {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-stats span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-stats i {
    color: var(--silk);
    margin-right: 5px;
}

/* ============================================
   WhatsApp & Back to Top
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    background: #128C7E;
    color: var(--white);
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--velvet);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--velvet-dark);
    color: var(--white);
}

/* ============================================
   Forms
   ============================================ */
.form-control,
.form-select {
    padding: 12px 16px;
    border: 2px solid var(--silk-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--velvet);
    box-shadow: 0 0 0 3px rgba(30, 46, 82, 0.1);
}

.form-label {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--velvet);
    margin-bottom: 8px;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-light { color: rgba(255, 255, 255, 0.8) !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-nav-prev {
        left: 15px;
    }
    
    .hero-nav-next {
        right: 15px;
    }
    
    .hero-pagination {
        bottom: 80px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .navbar-collapse {
        background: var(--velvet);
        padding: 20px;
        margin-top: 15px;
        border-radius: var(--radius-md);
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-nav-prev,
    .hero-nav-next {
        display: none;
    }
    
    .hero-pagination {
        bottom: 70px;
    }
    
    .hero-youtube-video {
        width: 300%;
        height: 100%;
        min-width: 300%;
    }
    
    .footer-stats {
        justify-content: center;
        margin-top: 10px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 25px;
    }
}
