/* Color Variables */
:root {
    --primary-color: #E06D60; /* Soft Coral / Warm Orange-Pink */
    --primary-dark: #C9574A;
    --secondary-color: #F8B3A8; /* Light Pink/Coral */
    --accent-color: #B25A4B; /* Earthy warm tone */
    --text-dark: #2C2C2C;
    --text-light: #6A6A6A;
    --bg-light: #FFF8F6; /* Very soft peach/pink background */
    --bg-white: #FFFFFF;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(224, 109, 96, 0.1);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    color: var(--text-dark);
}

body {
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-white { color: white; }
.mt-4 { margin-top: 1.5rem; }
.w-100 { width: 100%; display: block; }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(224, 109, 96, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 109, 96, 0.5);
    color: white;
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 80px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    height: 50px;
    display: block;
    position: relative;
    width: 250px;
}

.logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo-default {
    height: 100%;
    position: absolute;
    left: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    object-fit: contain;
}

.logo-full {
    height: 100%;
    position: absolute;
    left: -100px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    object-fit: contain;
}

.logo-container:hover .logo-default {
    opacity: 0;
    transform: translateX(-20px);
}

.logo-container:hover .logo-full {
    opacity: 1;
    left: 0;
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--bg-light);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    color: var(--primary-color);
}
.nav-cta::after { display: none; }
.nav-cta:hover {
    background-color: var(--primary-color);
    color: white;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    margin-top: 0;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-video-bg, .slide-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-img-bg {
    background-size: cover;
    background-position: center;
}

.slide-video-bg iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh; 
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.dark-overlay { background: rgba(0, 0, 0, 0.4); }
.pink-overlay { background: rgba(224, 109, 96, 0.6); }

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content-center {
    align-items: center;
    text-align: center;
}

.slide-content-left {
    align-items: flex-start;
    text-align: left;
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    max-width: 800px;
    animation: slideUp 0.8s ease backwards;
    animation-delay: 0.3s;
}

.slide-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    animation: slideUp 0.8s ease backwards;
    animation-delay: 0.5s;
}

.btn-play {
    animation: slideUp 0.8s ease backwards;
    animation-delay: 0.7s;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}
.btn-play i { font-size: 1.5rem; }

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary-color);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

/* Section General */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.sub-heading {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* Quote Section */
.quote-section {
    background-color: var(--primary-color);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
}

.testimonial {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial i {
    font-size: 3rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.testimonial cite {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: var(--bg-light);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-text {
    color: var(--text-light);
    font-size: 1rem;
}

/* Actions Section */
.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

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

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

.action-icon {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.action-card:hover .action-icon {
    color: var(--primary-color);
    transform: scale(1.1) rotate(-5deg);
}

.action-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.action-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.action-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

/* Engage Section */
.engage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.engage-content .section-title { margin-bottom: 2rem; }

.engage-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.engage-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

.engage-list {
    margin-top: 1rem;
}

.engage-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.engage-list i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.engage-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(224, 109, 96, 0.2);
    box-shadow: var(--shadow-sm);
}

.engage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.engage-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.footer-brand p {
    color: #bbb;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer ul li {
    margin-bottom: 0.8rem;
    color: #bbb;
}

.footer ul li a:hover {
    color: var(--primary-color);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

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

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

.youtube-link { color: #FF0000 !important; }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .engage-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 2rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
    }
    
    .nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .logo-container {
        width: 200px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Print Styles */
@media print {
    @page { 
        size: 16in 42in; /* Roughly 1536px by 4000px to ensure it fits in one single page */
        margin: 0; 
    }
    
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        margin: 0;
        padding: 0;
    }
    
    .hero {
        height: auto !important;
        min-height: auto !important;
        page-break-after: always;
    }
    
    .slider-container .slide {
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: 100vh !important;
        min-height: 600px !important;
        display: block !important;
    }

    .slide-video-bg, .slide-img-bg {
        position: absolute !important;
        height: 100% !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .slide-video-bg iframe {
        display: none !important;
    }
    
    .slider-controls {
        display: none !important;
    }
    
    .stats-grid, .actions-grid {
        display: grid !important; 
    }
    
    .stat-card, .action-card {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .header {
        position: static !important;
    }
}
