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

:root {
    /* Light mode colors (default) */
    --primary-color: #2C5F5D;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --coral-color: #FF7F7F;
    --ocean-color: #006B96;
    --bg-color: #FEFEFE;
    --bg-secondary: #F8F9FA;
    --text-color: #2D3748;
    --text-gray: #718096;
    --text-light: #A0AEC0;
    --border-color: rgba(44, 95, 93, 0.15);
    --card-bg: rgba(255, 255, 255, 0.95);
    --navbar-bg: rgba(254, 254, 254, 0.95);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Dark mode colors */
body.dark-mode {
    --primary-color: #4ECDC4;
    --secondary-color: #FF8A80;
    --accent-color: #00BCD4;
    --coral-color: #FF9999;
    --ocean-color: #00ACC1;
    --bg-color: #1A1A2E;
    --bg-secondary: #16213E;
    --text-color: #EAEAEA;
    --text-gray: #B8B8B8;
    --text-light: #888888;
    --border-color: rgba(78, 205, 196, 0.2);
    --card-bg: rgba(22, 33, 62, 0.95);
    --navbar-bg: rgba(26, 26, 46, 0.95);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-heavy: 0 20px 40px rgba(0, 0, 0, 0.7);
}


body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--navbar-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-container .logo {
    background: none !important;
    background-color: transparent !important;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0;
    box-shadow: none !important;
    outline: none !important;
    text-decoration: none;
}

.logo img {
    height: 90px;
    width: auto;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Dark mode logo glow effect */
body.dark-mode .logo img {
    filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.7))
            drop-shadow(0 0 40px rgba(78, 205, 196, 0.5))
            drop-shadow(0 0 60px rgba(78, 205, 196, 0.3))
            drop-shadow(0 0 80px rgba(78, 205, 196, 0.2));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(78, 205, 196, 0.7))
                drop-shadow(0 0 40px rgba(78, 205, 196, 0.5))
                drop-shadow(0 0 60px rgba(78, 205, 196, 0.3))
                drop-shadow(0 0 80px rgba(78, 205, 196, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(78, 205, 196, 0.9))
                drop-shadow(0 0 50px rgba(78, 205, 196, 0.7))
                drop-shadow(0 0 75px rgba(78, 205, 196, 0.5))
                drop-shadow(0 0 100px rgba(78, 205, 196, 0.3));
    }
}

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

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
}

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

nav a:hover::after {
    width: 100%;
}

/* Theme Toggle Button */
.theme-toggle {
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: var(--primary-color);
    transform: rotate(20deg) scale(1.1);
}

.theme-toggle .theme-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

body.dark-mode .theme-toggle .theme-icon {
    transform: rotate(180deg);
}

.desktop-theme-toggle {
    display: flex;
}

.mobile-theme-toggle {
    display: none;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* Video Gallery Section */
.video-gallery-section {
    padding-top: 140px;
    padding-bottom: 2rem;
    margin-top: -1px;
    background: var(--bg-color);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.video-gallery-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.video-gallery-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.video-slide {
    min-width: 100%;
    position: relative;
    aspect-ratio: 9/16;
    max-height: 80vh;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    color: white;
}

.video-overlay h3 {
    font-size: 2rem;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.video-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

body.dark-mode .video-nav-btn {
    color: rgba(78, 205, 196, 0.9);
}

.video-nav-btn:hover {
    color: white;
    transform: translateY(-50%) scale(1.2);
}

.video-nav-prev {
    left: 1rem;
}

.video-nav-next {
    right: 1rem;
}

.video-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.video-dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* About Us Section */
.about-us-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 2;
}

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

.about-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Hero Section / Slideshow */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 0;
    margin-top: -1px;
    overflow: hidden;
    z-index: 2;
    background: var(--bg-color);
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.slideshow-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.slideshow-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slideshow-slide__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slideshow-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slideshow-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.4;
}

.slideshow-slide__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
    width: 100%;
}

.slideshow-slide__heading {
    color: white;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slideshow-slide__subheading {
    color: white;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

/* Buttons */
.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-medium);
}

.cta-primary:hover {
    background: var(--ocean-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

.cta-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Brands Section */
.brands-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-color) 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
    animation: brandGlow 15s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, 20px) scale(1.1); }
}

.brands-section .section-title {
    position: relative;
    z-index: 1;
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.brands-grid {
    position: relative;
    max-width: 1000px;
    height: 360px;
    margin: 0 auto;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.brand-item {
    position: absolute;
    width: 220px;
    height: 210px;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px) rotateY(45deg) scale(0.8);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.brand-item.active {
    opacity: 1;
    transform: translateX(0) rotateY(0deg) scale(1.1);
    z-index: 10;
    box-shadow: 0 20px 60px rgba(78, 205, 196, 0.3);
    border-color: var(--primary-color);
}

.brand-item.left {
    opacity: 0.4;
    transform: translateX(-280px) rotateY(-25deg) scale(0.85);
    z-index: 5;
}

.brand-item.right {
    opacity: 0.4;
    transform: translateX(280px) rotateY(25deg) scale(0.85);
    z-index: 5;
}

.brand-item.far-left {
    opacity: 0;
    transform: translateX(-400px) rotateY(-45deg) scale(0.7);
    z-index: 1;
}

.brand-item.far-right {
    opacity: 0;
    transform: translateX(400px) rotateY(45deg) scale(0.7);
    z-index: 1;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0%);
    transition: all 0.8s ease;
}

.brand-item:not(.active) img {
    filter: grayscale(50%);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Showcase Section */
.showcase-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 10;
}

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

.showcase-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.showcase-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.showcase-features {
    list-style: none;
}

.showcase-features li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.showcase-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.texture-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    height: 300px;
    position: relative;
    z-index: 5;
}

.texture-sample {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 5;
}

.texture-sample:hover {
    transform: scale(1.05);
}

.texture-1 {
    background-image: url('tex1.jpg');
    background-size: cover;
    background-position: center;
    grid-row: span 2;
}

.texture-2 {
    background-image: url('tex2.jpg');
    background-size: cover;
    background-position: center;
}

.texture-3 {
    background-image: url('tex3.jpg');
    background-size: cover;
    background-position: center;
}

/* Story Section */
.story-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
    background: var(--bg-color);
}

.coral-pattern-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 127, 127, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.2) 0%, transparent 50%);
    z-index: -1;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 10;
}

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

.testimonial-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.testimonial-content p {
    color: var(--text-gray);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.author-info strong {
    color: var(--text-color);
    display: block;
}

.author-info span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
    background: var(--bg-color);
}

.final-cta-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.cta-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-content p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

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

.contact-item p {
    color: var(--text-gray);
    margin: 0;
}

.contact-item p a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .video-gallery-section {
        padding-top: 160px;
    }

    .video-gallery-container {
        padding: 1rem;
    }

    .video-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 2.5rem;
    }

    .video-nav-prev {
        left: 0.5rem;
    }

    .video-nav-next {
        right: 0.5rem;
    }

    .video-overlay h3 {
        font-size: 1.5rem;
    }

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

    .brands-section .section-title {
        font-size: 2rem;
    }

    .brands-grid {
        height: 250px;
    }

    .brand-item {
        width: 180px;
        height: 170px;
        padding: 1rem;
    }

    .brand-item.active {
        transform: translateX(0) rotateY(0deg) scale(1);
    }

    .brand-item.left {
        transform: translateX(-200px) rotateY(-20deg) scale(0.8);
    }

    .brand-item.right {
        transform: translateX(200px) rotateY(20deg) scale(0.8);
    }

    .slideshow-slide__heading {
        font-size: 2.5rem;
    }

    .slideshow-slide__subheading {
        font-size: 1.1rem;
    }

    .navbar {
        padding: 1.25rem 0;
    }

    .nav-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 0.5rem;
        min-height: 120px;
        position: relative;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        order: 1;
    }

    .logo {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background: none !important;
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .logo img {
        height: 120px;
    }

    .nav-right {
        order: 3;
    }

    .desktop-theme-toggle {
        display: none;
    }

    .mobile-theme-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        margin-left: 0;
        order: 4;
        justify-self: end;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navbar-bg);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    nav a {
        padding: 1rem 2rem;
        font-size: 1.2rem;
        display: block;
        border-radius: 10px;
        background: var(--card-bg);
        border: 1px solid var(--border-color);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges {
        justify-content: center;
    }

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

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

    .texture-display {
        position: relative;
        height: 250px;
        overflow: hidden;
        display: block;
    }

    .texture-sample {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .texture-sample.active {
        opacity: 1;
    }

    .texture-1 {
        grid-row: auto;
    }

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

    .final-cta-section .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

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

    .section-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .texture-display {
        grid-template-columns: 1fr;
        height: 150px;
    }
}


/* Scroll offset for fixed navbar */
section {
    scroll-margin-top: 80px;
}