/* ============================================
   MONTSUN INVESTMENTS - MAIN STYLESHEET
   Corporate Colors: Emerald Green (#0F5C5C) & White (#FFFFFF)
   Accent: Gold (#F4C542) for highlights
   ============================================ */

/* ==================== RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald-primary: #0F5C5C;
    --emerald-dark: #094040;
    --emerald-light: #1a7a7a;
    --emerald-soft: #e6f0f0;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gold: #F4C542;
    --gold-dark: #e0b32a;
    --gray-dark: #2C3E3E;
    --gray-light: #ECF0F1;
    --text-dark: #1A2C2C;
    --text-gray: #4A5B5B;
    --shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
    background: var(--emerald-primary);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-area {
    display: flex;
    flex-direction: column;
}

.logo-link {
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-montsun {
    color: var(--gold);
}

.logo-invest {
    color: var(--white);
}

.tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
    font-style: italic;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-list li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-list li a:hover:before,
.nav-list li a.active:before {
    width: 100%;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--gold);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    color: var(--gold);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-dark) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-pretitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 600;
}

.hero-text h1 {
    font-size: 4rem;
    margin: 1rem 0;
}

.hero-montsun {
    color: var(--gold);
}

.hero-invest {
    color: var(--white);
}

.hero-sub {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.weather-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--emerald-dark);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--emerald-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 40px;
    font-size: 1.1rem;
}

.btn-link {
    color: var(--emerald-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--gold);
    gap: 0.8rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==================== STATS RIBBON ==================== */
.stats-ribbon {
    background: var(--emerald-dark);
    padding: 3rem 0;
    color: var(--white);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-block {
    flex: 1;
    min-width: 150px;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==================== INTRO SECTION ==================== */
.intro-company {
    background: var(--off-white);
}

.intro-flex {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.intro-text {
    flex: 2;
}

.intro-text p {
    margin-bottom: 1.2rem;
    color: var(--text-gray);
}

.client-badge {
    background: var(--emerald-soft);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    font-weight: 500;
    color: var(--emerald-dark);
    border-left: 4px solid var(--gold);
}

.client-badge i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.intro-stats-card {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.fleet-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.fleet-highlight:last-child {
    border-bottom: none;
}

.fleet-highlight i {
    font-size: 2rem;
    color: var(--gold);
}

.fleet-highlight strong {
    font-size: 1.5rem;
    color: var(--emerald-primary);
    display: block;
}

/* ==================== SERVICES SECTION ==================== */
.services-preview,
.services-full {
    background: var(--white);
}

.services-grid,
.services-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-light);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.service-card h3 {
    color: var(--emerald-primary);
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.learn-more:hover {
    color: var(--gold-dark);
    transform: translateX(5px);
}

/* ==================== CTA QUOTE SECTION ==================== */
.cta-quote {
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-dark));
    text-align: center;
    color: var(--white);
}

.cta-flex h2 {
    color: var(--white);
}

.cta-flex h2:after {
    background: var(--gold);
    left: 50%;
    transform: translateX(-50%);
}

.cta-flex p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
    background: linear-gradient(135deg, var(--emerald-primary), var(--emerald-dark));
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ==================== ABOUT PAGE ==================== */
.about-story {
    background: var(--white);
    padding: 4rem 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1.5;
}

.about-text h2 {
    color: var(--emerald-primary);
}

.quote-block {
    background: var(--emerald-soft);
    padding: 2rem;
    border-radius: 20px;
    margin-top: 2rem;
    font-style: italic;
    border-left: 4px solid var(--gold);
    color: var(--text-dark);
}

.quote-block i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.about-directors {
    flex: 1;
    background: var(--off-white);
    padding: 2rem;
    border-radius: 20px;
}

.about-directors h3 {
    color: var(--emerald-primary);
    margin-bottom: 1.5rem;
}

.director-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.director-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-sm);
}

.director-card i {
    font-size: 2rem;
    color: var(--gold);
}

.director-card strong {
    display: block;
    color: var(--emerald-primary);
    margin-bottom: 0.25rem;
}

.director-card span {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
}

.team-stats span {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald-primary);
}

.team-stats i {
    margin-right: 0.5rem;
    color: var(--gold);
}

/* ==================== MISSION VALUES ==================== */
.mission-values {
    background: var(--off-white);
    padding: 4rem 0;
}

.values-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--emerald-primary);
}

/* ==================== INDUSTRIES PAGE ==================== */
.industries-grid-section {
    padding: 4rem 0;
    background: var(--white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.industry-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--emerald-light);
}

.industry-card i {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.industry-card h3 {
    color: var(--emerald-primary);
}

.industry-quote {
    text-align: center;
    background: var(--emerald-soft);
    padding: 2.5rem;
    border-radius: 20px;
    margin-top: 2rem;
}

.industry-quote p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

/* ==================== GALLERY PAGE ==================== */
.gallery-section {
    padding: 4rem 0;
    background: var(--white);
}

.gallery-filter {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-btn {
    background: var(--gray-light);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    margin: 0 5px 10px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-dark);
}

.filter-btn:hover {
    background: var(--emerald-light);
    color: var(--white);
}

.filter-btn.active {
    background: var(--gold);
    color: var(--emerald-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    background: var(--off-white);
    border-radius: 20px;
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--gray-light);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-img i {
    font-size: 4rem;
    color: var(--emerald-primary);
    transition: var(--transition);
}

.gallery-item:hover .gallery-img i {
    color: var(--gold);
    transform: scale(1.05);
}

.gallery-caption {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ==================== CONTACT PAGE ==================== */
.contact-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.contact-wrapper {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-info h3 {
    color: var(--emerald-primary);
    margin-bottom: 1rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-detail:hover {
    transform: translateX(5px);
    background: var(--emerald-soft);
}

.contact-detail i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
}

.contact-detail strong {
    display: block;
    color: var(--emerald-primary);
    margin-bottom: 0.25rem;
}

.contact-form-card {
    flex: 1.2;
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    color: var(--emerald-primary);
    margin-bottom: 1.5rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(244, 197, 66, 0.1);
}

.form-row textarea {
    border-radius: 16px;
    resize: vertical;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-feedback.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--emerald-dark);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 3rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding-bottom: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    font-size: 0.85rem;
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--emerald-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in {
    animation: fadeIn 0.6s ease;
}

.slide-in {
    animation: slideIn 0.6s ease;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
        flex-direction: column;
        background: var(--emerald-primary);
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 999;
        box-shadow: var(--shadow-md);
    }
    
    .nav-list.show {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        justify-content: center;
    }
    
    .stat-block {
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 0.5rem 0;
        text-align: center;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .intro-flex,
    .about-grid,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    h2:after {
        width: 40px;
    }
    
    .services-grid,
    .industries-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-block {
        min-width: 100%;
    }
    
    .team-stats span {
        font-size: 0.75rem;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

.text-emerald {
    color: var(--emerald-primary);
}

.bg-light {
    background: var(--off-white);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
/* ==================== CAROUSEL SECTION ==================== */
.carousel-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 60px 0;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 92, 92, 0.85) 0%, rgba(9, 64, 64, 0.9) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
}

.slide-content i {
  font-size: 5rem;
  color: #F4C542;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.slide-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.slide-content p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.slide-badge {
  display: inline-block;
  background: rgba(244, 197, 66, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(244, 197, 66, 0.5);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #0F5C5C;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-button:hover {
  background: #F4C542;
  color: #094040;
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 20px;
}

.carousel-button.next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #F4C542;
  width: 30px;
  border-radius: 10px;
}

.dot:hover {
  background: #F4C542;
  transform: scale(1.2);
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ==================== RESPONSIVE CAROUSEL ==================== */
@media (max-width: 768px) {
  .carousel-slide {
    min-height: 400px;
  }
  
  .slide-content {
    height: 400px;
  }
  
  .slide-content h3 {
    font-size: 1.8rem;
  }
  
  .slide-content i {
    font-size: 3rem;
  }
  
  .carousel-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .slide-content h3 {
    font-size: 1.4rem;
  }
  
  .slide-content p {
    font-size: 0.9rem;
  }
  
  .slide-badge {
    font-size: 0.8rem;
    padding: 0.3rem 1rem;
  }
}