/* Base Styles & Variables */
:root {
    --primary-color: #6a0dad;  /* Rich purple */
    --primary-light: #9b4dca;  /* Light purple */
    --primary-dark: #4a0072;   /* Dark purple */
    --accent-color: #ffd700;   /* Gold accent */
    --text-light: #ffffff;     /* White */
    --text-dark: #333333;      /* Dark gray */
    --bg-light: #f9f4ff;       /* Very light purple */
    --bg-dark: #2a0545;        /* Very dark purple */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --transition: all 0.4s ease;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-light), #fff);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-attachment: fixed;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.2;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--primary-light);
    border-radius: 5px;
}

.text-center .section-title::after {
    left: 20%;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-dark);
}

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

.mt-5 {
    margin-top: 3rem;
}

/* Containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Effects */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
    padding: 30px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.15);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%) rotate(45deg);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.glass-header {
    background: rgba(255, 255, 255, 0.416);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 30px var(--glass-shadow);
    transition: padding 0.3s ease;
}

.glass-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.logo-img {
    max-height: 40px;
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

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

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

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

.gallery-link {
    color: var(--text-light) !important;
    background: var(--primary-color);
    padding: 8px 20px !important;
    border-radius: 50px;
}

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

.gallery-link::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 2px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Improved Hero Video Background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 100px 0 60px;
    }
    
    .hero-video-background {
        opacity: 0.3; /* Reduced opacity on mobile for better text readability */
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-content p {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 60px 0 30px;
    }
}

.hero-content {
    padding-left: 50px;
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-family: 'Cormorant Garamond', serif;
    color: var(--primary-light);
}

.hero-image {
    flex: 1;
    position: relative;
    height: 70vh;
}

.hero-image-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: var(--primary-light);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: morphShape 10s ease-in-out infinite;
}

@keyframes morphShape {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, #ffffff 0%, #7850d7 100%);
    padding: 1rem 0 1rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.about-content {
    padding-top: 80px;
    display: flex;
    align-items: center;
    padding-bottom: 80px;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    max-height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--glass-shadow);
}

.about-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.8s ease;
}

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

/* Showcase Section */
.showcase-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.03), rgba(155, 77, 202, 0.05));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Showcase Carousel */
.scene3d {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.showcase-swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    opacity: 0.4;
    transition: all 0.5s ease;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.swiper-slide-active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.carousel-caption h4 {
    margin: 0 0 5px;
    color: white;
    font-size: 1.2rem;
}

.carousel-caption p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .showcase-swiper {
        padding: 30px 0;
    }

    .swiper-slide {
        width: 250px;
        height: 350px;
    }
}

/* Featured Showcase Item */
.showcase-featured {
    display: flex;
    gap: 40px;
    margin: 50px 0;
    align-items: center;
}

.featured-main {
    flex: 1.3;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    background: rgba(0, 0, 0, 0.1);
}

.featured-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.featured-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translateX(100%);
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.featured-image.active {
    transform: translateX(0);
    opacity: 1;
}

.featured-image.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.featured-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
    pointer-events: none;
    opacity: 1;
}

.featured-main:hover img {
    transform: scale(1.05);
}

.featured-details {
    flex: 1;
    height: 500px;
    display: flex;
    align-items: center;
    padding-left: 40px;
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.featured-details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 70%;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
    border-radius: 4px;
}

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

.detail-content {
    padding: 40px 0;
    max-width: 90%;
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    position: relative;
    padding-bottom: 15px;
}

.featured-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
}

.featured-description {
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    opacity: 0.9;
}

.featured-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    position: relative;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
}

.spec-item:hover {
    transform: translateX(10px);
}

.spec-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(106, 13, 173, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-item:hover .spec-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.3);
}

/* Improved 3D Carousel */
.scene3d {
    margin: 80px auto;
    position: relative;
    overflow: visible;
    padding: 40px 0 40px;
    max-width: 1200px;
    text-align: center;
}

.carousel3d-container {
    perspective: 1200px;
    width: 100%;
    height: 400px;
    position: relative;
    margin: 0 auto;
}

.swiper-slide {
    width: 300px;
    height: 400px;
}

.carousel-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.carousel-item-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: white;
}

.carousel-item-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: white;
}

.carousel-item-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Swiper specific styles */
.swiper-container {
    overflow: hidden;
    padding: 20px 0;
}

.swiper-slide {
    transition: transform 0.3s ease;
}

.swiper-slide-active {
    transform: scale(1.1);
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--primary-color);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

.carousel-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: var(--primary-dark);
    position: relative;
}

.carousel-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 5px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    margin: 0 15px;
}

.carousel-control i {
    font-size: 1.2rem;
}

.carousel-control:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(106, 13, 173, 0.3);
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(106, 13, 173, 0.5);
}

.carousel-reflection {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1) perspective(500px) rotateX(30deg);
    width: 220px;
    height: 80px;
    background-size: cover;
    background-position: bottom;
    opacity: 0.25;
    filter: blur(2px);
    border-radius: 20px;
    z-index: -1;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

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

.carousel3d.auto-rotating {
    animation: rotateCarousel 25s linear infinite;
}

.carousel3d.paused {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel3d-container {
        height: 350px;
    }
    
    .carousel-item {
        width: 200px;
        height: 270px;
    }
}

/* Journey Section */
.journey-section {
    padding: var(--section-padding);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 50px;
}

.journey-step {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.journey-step h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.journey-step p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(51, 51, 51, 0.85);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.0rem;
    font-weight: 600;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid var(--primary-light);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.03), rgba(155, 77, 202, 0.05));
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.testimonial-slider::-webkit-scroll-progress {
    height: 3px;
    background: var(--gradient-primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none; /* Chrome, Safari, Edge */
}

.testimonial {
    min-width: 350px;
    flex: 1;
    padding: 40px 30px;
    position: relative;
}

.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-light);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
}

.contact-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.contact-info, .contact-form {
    flex: 1;
}

.contact-info h3 {
    margin-bottom: 30px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 15px;
    color: var(--primary-color);
    width: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(106, 13, 173, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(106, 13, 173, 0.1);
}

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

/* Footer */
footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo h2 {
    color: var(--text-light);
    font-size: 1.75rem;
}

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

.social-icon {
    color: var(--text-light);
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Initial states for slide-up animations */
.about-section,
.showcase-section {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    z-index: 1;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animation Classes */
.animate-text {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-text-delay {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.animate-fade-in {
    opacity: 1;
    transition: opacity 0.6s ease 0.6s;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    
    .hero {
        flex-direction: column;
        height: 100vh;
        padding: 100px 0 40px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-video-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.6;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
        padding: 0 20px;
        text-align: center;
        max-width: 100%;
        margin: auto 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 80%;
        padding-bottom: 50px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-content {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .journey-section {
        padding: 60px 0;
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .journey-step {
        padding: 20px 15px;
    }
    
    .journey-step h3 {
        margin-bottom: 10px;
        font-size: 1rem;
    }
    
    .journey-step p {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-top: 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin: 0 auto 20px;
    }

    .contact-form {
        max-width: 100%;
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-info, .contact-form {
        width: 100%;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

    .contact-social {
        margin-top: 30px;
    }

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

    .about-text p {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        height: 350px;
        max-width: 100%;
        margin: 0 auto;
    }

    .showcase-featured {
        flex-direction: column;
        gap: 30px;
    }

    .featured-main {
        height: 400px;
        width: 100%;
    }

    .featured-details {
        height: auto;
        padding: 30px 0;
        text-align: center;
    }

    .featured-details::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 70%;
        height: 3px;
    }

    .featured-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .featured-specs {
        align-items: center;
    }

    .spec-item:hover {
        transform: translateY(-5px);
    }

    .detail-content {
        padding: 20px;
        max-width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        padding: 20px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        transform: translateY(-200%);
        transition: var(--transition);
        opacity: 0;
        z-index: 1000;
        border-bottom: 1px solid rgba(106, 13, 173, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-menu li {
        margin: 12px 0;
        text-align: center;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: inline-block;
        width: auto;
    }
    
    .gallery-link {
        margin: 10px auto;
        width: 200px;
        text-align: center;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        z-index: 1001;
    }
    
    .menu-toggle span {
        height: 2px;
        width: 25px;
        transition: var(--transition);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .journey-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .journey-section {
        padding: 35px 0;
    }

    .journey-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        width: 95%;
        margin: 25px auto 0;
    }

    .journey-step {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(106, 13, 173, 0.1);
        transform: none;
        min-height: 180px;
        justify-content: center;
    }

    .journey-step:hover {
        transform: translateY(-3px);
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin: 0 auto 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(106, 13, 173, 0.15);
    }

    .journey-step h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--primary-dark);
    }

    .journey-step p {
        font-size: 0.85rem;
        line-height: 1.4;
        color: var(--text-dark);
        opacity: 0.9;
        margin: 0 auto;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .contact-info {
        padding: 25px 15px;
    }

    .contact-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .contact-info-item {
        margin-bottom: 15px;
    }

    .contact-info-item i {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .contact-social a {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .hero {
        height: 90vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 0 15px 40px;
        justify-content: flex-end;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
        padding: 0 10px;
    }
    
    .hero-content .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .about-image {
        height: 250px;
    }

    .featured-main {
        height: 300px;
    }

    .featured-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .featured-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .featured-specs {
        gap: 15px;
    }

    .spec-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .featured-details::before {
        width: 50%;
    }
    
    .form-group input, 
    .form-group textarea {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        width: 100%;
        padding: 0 10px;
    }
}

/* Improved Swiper Carousel Responsiveness */
.showcase-swiper {
    width: 100%;
    padding: 50px 0;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .showcase-swiper {
        padding: 30px 0;
    }
    
    .swiper-slide {
        width: 260px;
        height: 350px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .showcase-swiper {
        padding: 20px 0;
    }
    
    .swiper-slide {
        width: 220px;
        height: 300px;
    }
    
    .carousel-item-caption {
        padding: 15px;
    }
    
    .carousel-item-caption h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .carousel-item-caption p {
        font-size: 0.9rem;
    }
}
