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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo-image {
    height: 75px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.nav-logo a {
    text-decoration: none;
    display: inline-block;
}

.nav-logo a:hover {
    text-decoration: none;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #5B7FA8;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #5B7FA8;
    transition: width 0.3s ease;
}

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

/* Navigation Phone Number */
.nav-phone {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid #e2e8f0;
}

.nav-phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #5B7FA8;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-phone-link:hover {
    background: #4A6B8A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 127, 168, 0.3);
}

.nav-phone-link i {
    font-size: 0.9rem;
}

.nav-phone-link span {
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Above sliding menu */
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

/* Hamburger to X animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(91, 127, 168, 0.8), rgba(91, 127, 168, 0.8)), url('../images/Hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 150px;
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #e8f4fd;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
    
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #5B7FA8;
    color: white;
}

.btn-primary:hover {
    background: #4A6B8A;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(91, 127, 168, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #5B7FA8;
    transform: translateY(-2px);
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover,
.btn[disabled]:hover {
    transform: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

.hero-placeholder {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Video Showcase Section */
.video-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        #f1f3f4 0%, 
        #e8eaed 25%, 
        #dadce0 50%, 
        #e8eaed 75%, 
        #f1f3f4 100%);
    position: relative;
}

.video-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(91, 127, 168, 0.08) 0%, 
        transparent 30%, 
        rgba(122, 155, 196, 0.06) 50%, 
        transparent 70%, 
        rgba(74, 107, 138, 0.04) 100%);
    z-index: 1;
}

.video-showcase .container {
    position: relative;
    z-index: 2;
}

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

.video-item {
    position: relative;
    background: #f8f9fa;
    border-radius: 15px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
}

.video-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Plyr video wrapper */
.video-item .plyr {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
}

.video-item .plyr video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* Prevent iOS video flicker and transition issues */
.video-item .plyr video {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* Fix iOS video container */
.video-item .plyr__video-wrapper {
    background: #000;
}

/* Disable Plyr poster transition on iOS */
@supports (-webkit-touch-callout: none) {
    .plyr__poster {
        transition: none !important;
    }
    
    .plyr--loading .plyr__poster {
        opacity: 0;
        transition: none !important;
    }
}

/* Expand icon overlay */
.video-expand-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(91, 127, 168, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 15;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-expand-icon:hover {
    background: rgba(91, 127, 168, 1);
    transform: scale(1.1);
}

/* Make expand icon slightly smaller on mobile for better touch */
@media (max-width: 768px) {
    .video-expand-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* Video caption below the video */
.video-caption {
    padding: 1rem 0.5rem 1rem;
    text-align: center;
}

.video-caption h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    
    color: #333;
}

.video-caption p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Customize Plyr colors to match site theme */
.plyr--video .plyr__control--overlaid {
    background: rgba(91, 127, 168, 0.85);
}

.plyr--video .plyr__control--overlaid:hover {
    background: rgba(91, 127, 168, 0.95);
}

.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded=true] {
    background: #5B7FA8;
}

.plyr__control--overlaid svg {
    fill: white;
}

.plyr--full-ui input[type=range] {
    color: #5B7FA8;
}

.plyr__control--overlaid {
    padding: 25px !important;
}

/* Hide controls until video has played */
.plyr--stopped .plyr__controls,
.plyr--paused:not(.plyr--has-played) .plyr__controls {
    opacity: 0;
    pointer-events: none;
}

.plyr--playing .plyr__controls,
.plyr--has-played .plyr__controls {
    opacity: 1;
    pointer-events: auto;
}

/* Always show the big play button */
.plyr__control--overlaid {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Ensure video scales properly on hover */
.video-item:hover .plyr video {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Video Modal for Desktop */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    z-index: 100000;
    max-width: 90vh;
    max-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 100001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.video-modal-close:hover {
    transform: scale(1.1);
    color: #5B7FA8;
}

.video-modal-player {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 9/16;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-element {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

/* Video Modal Responsive */
@media (max-width: 768px) {
    .video-modal-player {
        max-width: 90vw;
    }
    
    .video-modal-close {
        top: -40px;
        font-size: 2.5rem;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .video-modal-player {
        max-width: 95vw;
    }
    
    .video-modal-close {
        top: 10px;
        right: 10px;
        background: rgba(91, 127, 168, 0.9);
        border-radius: 50%;
        font-size: 2rem;
        width: 36px;
        height: 36px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f0f2f3;
    background-image: url('../images/background.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(240, 242, 243, 0.85);
    z-index: 1;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5B7FA8;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5B7FA8, #7A9BC4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5B7FA8;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}




/* About Section */
.about {
    padding: 100px 0;
    background: #2c3e50;
    color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.2rem;
    color: #e8f4fd;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #e8f4fd;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: #7A9BC4;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #e8f4fd;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-photo:hover {
    transform: scale(1.02);
}

.about-placeholder {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #F7F5F3, #E8E2D5);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #B8C5D1;
}

.about-placeholder i {
    font-size: 8rem;
    color: #5B7FA8;
    opacity: 0.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f1f3f4;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 1.5rem;
    color: #5B7FA8;
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #5B7FA8;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 0.9rem;
}

.contact-item a {
    color: #5B7FA8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #4A6B8A;
    text-decoration: underline;
}

/* Allow long email to wrap within contact items */
.contact-item a[href^="mailto:"] {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-item .fa-whatsapp {
    color: #25D366;
}

.contact-item a[href*="wa.me"]:hover {
    color: #25D366;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5B7FA8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 0.7fr 1.3fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 75px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-image:hover {
    opacity: 1;
}

.footer-logo a {
    text-decoration: none;
    display: inline-block;
}

.footer-logo a:hover {
    text-decoration: none;
}

.footer-section h3,
.footer-section h4 {
    color: #5B7FA8;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Ensure long email addresses wrap nicely in the footer/contact text */
.footer-section p a[href^="mailto:"] {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-section a {
    color: #5B7FA8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #7A9BC4;
    text-decoration: underline;
}

.footer-section .fa-whatsapp {
    color: #25D366;
}

.footer-section a[href*="wa.me"]:hover {
    color: #25D366;
}

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

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #5B7FA8;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #a0aec0;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none !important;
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link span {
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    text-align: center;
    color: #a0aec0;
}

.footer-bottom p:last-child {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-bottom a {
    color: #5B7FA8 !important;
    text-decoration: underline;
    transition: color 0.3s ease;
    opacity: 1 !important;
}

.footer-bottom a:hover {
    color: #7A9BC4 !important;
    text-decoration: underline;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 80px 0 2rem 0;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;

    }

    /* Removed dedicated close button */

/* Desktop - Hide mobile elements */
@media (min-width: 769px) {
    .nav-close {
        display: none !important;
    }
    
    .hamburger {
        display: none !important;
    }
}
    
    .nav-phone {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid #e2e8f0;
        padding-top: 1rem;
        margin-top: 1rem;
    }
    
    .nav-phone-link {
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 20px;
    }
    
    .hero {
        background: linear-gradient(rgba(91, 127, 168, 0.8), rgba(91, 127, 168, 0.8)), url('../images/mobile Hero.png');
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: scroll !important;
        padding-top: 150px;
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }

    .hero-title {
        font-size: 2.5rem;
       
    }

    .hero-buttons {
        justify-content: center;
    }

    .services {
        background-image: url('../images/mobile background.png');
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo-image {
        height: 50px;
    }
    
    .social-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .social-link {
        flex: 1;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .social-link span {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .video-item {
        max-width: 250px;
    }
    
    .video-caption h3 {
        font-size: 1rem;
    }
    
    .video-caption p {
        font-size: 0.8rem;
    }

    .hero-placeholder,
    .about-placeholder {
        width: 300px;
        height: 300px;
    }

    .hero-placeholder i,
    .about-placeholder i {
        font-size: 6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
        color: white;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .video-item {
        max-width: 280px;
    }
    
    .video-caption h3 {
        font-size: 0.95rem;
    }
    
    .video-caption p {
        font-size: 0.75rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #5B7FA8;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    color: #5B7FA8;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-accept {
    background: #5B7FA8;
    color: white;
}

.cookie-accept:hover {
    background: #4A6B8A;
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid #666;
}

.cookie-reject:hover {
    background: #666;
    transform: translateY(-2px);
}

.cookie-settings {
    background: transparent;
    color: #5B7FA8;
    border: 2px solid #5B7FA8;
}

.cookie-settings:hover {
    background: #5B7FA8;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-modal-header h3 {
    color: #5B7FA8;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #5B7FA8;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-header h4 {
    color: #5B7FA8;
    margin: 0;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background-color: #5B7FA8;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

input:disabled + .toggle-slider {
    background-color: #5B7FA8;
    opacity: 0.6;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
        z-index: 99999;
        bottom: 0;
        padding-bottom: 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        width: 100%;
    }
    
    .cookie-text h4 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 0.875rem 1rem;
    }
    
    .cookie-modal {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1.5rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-text h4 {
        font-size: 0.95rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
}

/* Cookie Policy Page */
.policy-content {
    padding: 120px 0 80px;
    background: #F7F5F3;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
}

.policy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #5B7FA8;
    margin-bottom: 1rem;
}

.policy-intro {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.policy-body {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: #5B7FA8;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border-bottom: 2px solid #5B7FA8;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: #5B7FA8;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.policy-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    color: #666;
    line-height: 1.7;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

.cookie-type {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #5B7FA8;
}

.cookie-type h3 {
    color: #5B7FA8;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cookie-type p {
    margin-bottom: 0.5rem;
}

.browser-instructions {
    background: #e8f4fd;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.browser-instructions h3 {
    color: #5B7FA8;
    margin-top: 0;
    margin-bottom: 1rem;
}

.third-party-cookies {
    background: #f0f8ff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.third-party-cookies h3 {
    color: #5B7FA8;
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #5B7FA8;
}

.policy-section a {
    color: #5B7FA8;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
    .policy-content {
        padding: 100px 0 60px;
    }
    
    .policy-header h1 {
        font-size: 2.5rem;
    }
    
    .policy-body {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .cookie-type,
    .browser-instructions,
    .third-party-cookies,
    .contact-info {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.hero-placeholder,
.about-placeholder {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(91, 127, 168, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.reviews .container {
    position: relative;
    z-index: 1;
}

.reviews-carousel {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
    min-height: 450px;
}

.review-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    margin: 0 1rem;
    outline: none;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    color: rgba(91, 127, 168, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.review-stars i {
    color: #fbbf24;
    font-size: 1.5rem;
    animation: starPop 0.6s ease-out backwards;
}

.review-stars i:nth-child(1) {
    animation-delay: 0.1s;
}

.review-stars i:nth-child(2) {
    animation-delay: 0.2s;
}

.review-stars i:nth-child(3) {
    animation-delay: 0.3s;
}

.review-stars i:nth-child(4) {
    animation-delay: 0.4s;
}

.review-stars i:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes starPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid #f3f4f6;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5B7FA8 0%, #3d5a7a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(91, 127, 168, 0.3);
    transition: transform 0.3s ease;
}

.review-card:hover .author-avatar {
    transform: scale(1.1) rotate(5deg);
}

.author-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Slick Slider Custom Arrows */
.reviews-carousel .slick-prev,
.reviews-carousel .slick-next {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.reviews-carousel .slick-prev:before,
.reviews-carousel .slick-next:before {
    display: none;
}

.reviews-carousel .slick-prev:hover,
.reviews-carousel .slick-next:hover {
    background: #5B7FA8;
    box-shadow: 0 8px 25px rgba(91, 127, 168, 0.3);
}

.reviews-carousel .slick-prev:hover i,
.reviews-carousel .slick-next:hover i {
    color: white;
}

.reviews-carousel .slick-prev {
    left: -60px;
}

.reviews-carousel .slick-next {
    right: -60px;
}

.reviews-carousel .slick-prev i,
.reviews-carousel .slick-next i {
    font-size: 1.2rem;
    color: #5B7FA8;
    transition: color 0.3s ease;
}

/* Slick Dots Customization */
.reviews-carousel .slick-dots {
    bottom: -50px;
    display: flex !important;
    justify-content: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.reviews-carousel .slick-dots li {
    margin: 0;
    width: 12px;
    height: 12px;
}

.reviews-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: rgba(91, 127, 168, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0;
}

.reviews-carousel .slick-dots li button:before {
    display: none;
}

.reviews-carousel .slick-dots li button:hover {
    background: rgba(91, 127, 168, 0.6);
    transform: scale(1.2);
}

.reviews-carousel .slick-dots li.slick-active button {
    background: #5B7FA8;
    width: 30px;
    border-radius: 6px;
}

.reviews-carousel .slick-dots li.slick-active {
    width: 30px;
}

/* Reviews Section Responsive */
@media (max-width: 768px) {
    .reviews {
        padding: 4rem 0;
    }
    
    .reviews-carousel {
        padding: 1rem 0;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
        margin: 0 0.5rem;
        min-height: 380px;
    }
    
    .review-card::before {
        font-size: 4rem;
        top: 10px;
        left: 15px;
    }
    
    .review-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .review-stars {
        gap: 0.3rem;
    }
    
    .review-stars i {
        font-size: 1.2rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .author-info h4 {
        font-size: 1rem;
    }
    
    .author-info p {
        font-size: 0.85rem;
    }
    
    .reviews-carousel .slick-prev,
    .reviews-carousel .slick-next {
        width: 40px;
        height: 40px;
        opacity: 0.9;
    }
    
    .reviews-carousel .slick-prev i,
    .reviews-carousel .slick-next i {
        font-size: 1rem;
    }
    
    .reviews-carousel .slick-prev {
        left: -10px;
    }
    
    .reviews-carousel .slick-next {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.5rem 1rem;
        min-height: 360px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .reviews-carousel .slick-prev,
    .reviews-carousel .slick-next {
        width: 35px;
        height: 35px;
    }
    
    .reviews-carousel .slick-prev {
        left: -5px;
    }
    
    .reviews-carousel .slick-next {
        right: -5px;
    }
}

