/* ===================================
   Sun Coach Builders - Main Stylesheet
   =================================== */

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

:root {
    /* Color Palette */
    --primary-dark: #1a0b2e;
    --secondary-dark: #2d1b4e;
    --accent-blue: #4a5fff;
    --accent-light: #6b7fff;
    --accent-lighter: #8b9fff;
    --highlight: #00d4ff;
    --text-light: #ffffff;
    --text-gray: #b8b8d4;
    --text-dark: #1a1a2e;
    --bg-light: #f5f5f5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #4a5fff 100%);
    --gradient-secondary: linear-gradient(135deg, #4a5fff 0%, #6b7fff 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 11, 46, 0.95) 0%, rgba(74, 95, 255, 0.85) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-light);
    background: var(--primary-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Header & Navigation
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    box-shadow: none;
    transition: var(--transition-normal);
}

/* Top Contact Bar */
.top-bar {
    background: transparent;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.top-contact-item {
    color: #1e40af;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.top-contact-item:hover {
    color: #2563eb;
}

.top-contact-item i {
    color: #FFB800;
}

.navbar {
    padding: var(--spacing-sm) 0;
    background: transparent;
}

.header.scrolled,
.header.nav-open {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link {
    color: #1a1a2e;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: #4a5fff;
}

.header.scrolled .hamburger span {
    background: #1a1a2e;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo img {
    height: 40px;
    width: auto;
    transition: var(--transition-normal);
}

.header.scrolled .logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

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

.nav-link:hover,
.nav-link.active {
    color: #4a5fff;
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 11, 46, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-normal);
    z-index: 100;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(74, 95, 255, 0.2);
    color: #4a5fff;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.phone-link {
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.phone-link:hover {
    color: var(--accent-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(74, 95, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 95, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(130px + var(--spacing-xl)) 0 var(--spacing-xl);
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomIn 20s ease-in-out infinite alternate;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

.hero-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30, 64, 175, 0.8);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-btn:hover {
    background: #1e40af;
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-btn.prev {
    left: 20px;
}

.hero-carousel-btn.next {
    right: 20px;
}

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

.hero-carousel-dots .hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-carousel-dots .hero-dot.active {
    background: #1e40af;
    transform: scale(1.3);
    border-color: #1e40af;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

.hero-title .highlight {
    color: var(--highlight);
    position: relative;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-gray);
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes gradientShift {
    0% {
        background: linear-gradient(135deg, rgba(74, 95, 255, 0.85) 0%, rgba(107, 127, 255, 0.75) 50%, rgba(74, 95, 255, 0.85) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(107, 127, 255, 0.75) 0%, rgba(74, 95, 255, 0.85) 50%, rgba(107, 127, 255, 0.75) 100%);
    }
    100% {
        background: linear-gradient(135deg, rgba(74, 95, 255, 0.85) 0%, rgba(107, 127, 255, 0.75) 50%, rgba(74, 95, 255, 0.85) 100%);
    }
}

/* ===================================
   Section Styles
   =================================== */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 0 auto var(--spacing-sm);
    border-radius: 2px;
}

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

/* ===================================
   About Section
   =================================== */

.about {
    position: relative;
    background-image: url('https://res.cloudinary.com/dofzr1mdu/image/upload/v1760764048/IMG-20250928-WA0014_vlgkto.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 11, 46, 0.85);
    z-index: 1;
}

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

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

.about-text {
    text-align: center;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    color: var(--accent-light);
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(74, 95, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.feature-item:hover {
    background: rgba(74, 95, 255, 0.2);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: var(--spacing-sm);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===================================
   Products Section
   =================================== */

.products {
    background: white;
    padding: var(--spacing-xl) 0;
}

.products .section-title {
    color: var(--primary-dark);
}

.products-stack {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.product-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    background: #ffffff;
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
}

.product-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.product-item:hover {
    box-shadow: 0 8px 30px rgba(74, 95, 255, 0.15);
    transform: translateY(-5px);
}

.product-image {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    padding: var(--spacing-sm);
}

.product-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.product-name::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.product-item:hover .product-name::after {
    width: 100px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.product-view-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 95, 255, 0.3);
}

.product-view-more:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(74, 95, 255, 0.4);
}

.product-view-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.product-view-more:hover i {
    transform: translateX(3px);
}

/* ===================================
   Amenities Section
   =================================== */

.amenities {
    background: var(--secondary-dark);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.amenity-card {
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(74, 95, 255, 0.1);
    border-radius: 15px;
    transition: var(--transition-normal);
}

.amenity-card:hover {
    background: var(--gradient-secondary);
    transform: translateY(-5px);
}

.amenity-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.amenity-card:hover .amenity-icon {
    background: rgba(255, 255, 255, 0.2);
}

.amenity-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.amenity-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.amenity-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===================================
   Gallery Section
   =================================== */

.gallery {
    background: var(--primary-dark);
}

.gallery-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(74, 95, 255, 0.8);
    color: var(--text-light);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-normal);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(74, 95, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--accent-blue);
    transform: scale(1.2);
}

/* ===================================
   Our Clients Section
   =================================== */

.clients-section {
    background: #f8f9fa;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.clients-section .section-title {
    color: var(--primary-dark);
}

.clients-section .section-subtitle {
    color: #6c757d;
}

.clients-logos-wrapper {
    margin: var(--spacing-md) auto 0;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.clients-logos-wrapper::before,
.clients-logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.clients-logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.clients-logos-track {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    animation: scroll-logos 25s linear infinite;
    width: max-content;
}

.clients-logos-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.client-logo-item {
    background: white;
    padding: var(--spacing-md);
    border-radius: 15px;
    width: 180px;
    height: 180px;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    opacity: 1;
}

.client-logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(74, 95, 255, 0.2);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

/* Trust Section */
.trust-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.trust-badge {
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.trust-badge:nth-child(1) {
    animation-delay: 0.6s;
}

.trust-badge:nth-child(2) {
    animation-delay: 0.7s;
}

.trust-badge:nth-child(3) {
    animation-delay: 0.8s;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(74, 95, 255, 0.15);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.trust-badge:nth-child(1) .trust-badge-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.trust-badge:nth-child(2) .trust-badge-icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.trust-badge:nth-child(3) .trust-badge-icon {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.trust-badge-text {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
}

/* ===================================
   Why Choose Us Section
   =================================== */

.why-choose {
    background: var(--primary-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.why-card {
    background: var(--secondary-dark);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.why-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 2rem;
    color: var(--text-light);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.why-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    background: var(--secondary-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-card {
    background: rgba(74, 95, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
}

.info-card:hover {
    background: rgba(74, 95, 255, 0.2);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.info-card p {
    color: var(--text-gray);
}

.info-card a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-card a:hover {
    color: var(--highlight);
}

.contact-form-wrapper {
    background: rgba(74, 95, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid rgba(74, 95, 255, 0.3);
    border-radius: 10px;
    background: rgba(26, 11, 46, 0.5);
    color: var(--text-light);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(26, 11, 46, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--secondary-dark);
    color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--primary-dark);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    border-top: 1px solid rgba(74, 95, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.footer-about {
    max-width: 500px;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-about h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-light);
}

.footer-about p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

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

.footer-contact-info p {
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-contact-info i {
    color: var(--accent-blue);
    width: 20px;
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-sm);
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(74, 95, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--accent-blue);
    transform: translateY(-3px);
}

.footer-cta-btn {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 0.75rem 1.5rem;
    background: var(--gradient-secondary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: 0 4px 15px rgba(74, 95, 255, 0.4);
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 95, 255, 0.6);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(74, 95, 255, 0.2);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-bottom p {
    color: var(--text-gray);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* ===================================
   Floating Elements
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 58px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 58px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-lg);
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu .nav-link {
        color: var(--primary-dark);
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-blue);
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-contact {
        flex-direction: column;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .header.nav-open {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .header.nav-open .hamburger span {
        background: #1a1a2e;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .products-grid,
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .carousel-slide img {
        height: 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .top-bar {
        display: none;
    }
    
    /* About section mobile optimization */
    .about {
        background-attachment: scroll;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 30px;
    }
    
    .hero {
        padding: 60px 0 0;
        min-height: 60vh;
        height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-carousel {
        height: 100%;
    }
    
    .hero-slide {
        height: 100%;
    }
    
    .hero-background {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        height: 100%;
    }
    
    .hero-background::before {
        background: rgba(0, 0, 0, 0.65);
    }
    
    .hero-background::after {
        height: 40%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    }
    
    .hero-content {
        position: relative;
        z-index: 10;
        padding: var(--spacing-md) var(--spacing-sm);
        margin-top: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.5;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        margin-bottom: var(--spacing-md);
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    /* Hide carousel arrow buttons on mobile */
    .hero-carousel-btn {
        display: none;
    }
    
    /* Show and style carousel dots on mobile */
    .hero-carousel-dots {
        bottom: 10px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }
    
    .hero-carousel-dots .hero-dot {
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.7);
        border: 2px solid rgba(255, 255, 255, 0.95);
    }
    
    .hero-carousel-dots .hero-dot.active {
        background: #1e40af;
        border-color: #1e40af;
        transform: scale(1.3);
    }
    
    .products-grid,
    .amenities-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* Products stack mobile optimization */
    .product-item {
        flex-direction: column;
        gap: var(--spacing-md);
        padding: var(--spacing-sm);
    }
    
    .product-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-image img {
        height: 250px;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about {
        max-width: 100%;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-cta-btn {
        display: block;
        width: fit-content;
        margin: var(--spacing-md) auto 0;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
}
