/* Global Styles */
:root {
    /* Core Brand Colors */
    --primary-color: #0DFF72;       /* Refined Neon Green - more modern than pure #00FF00 */
    --primary-dark: #0AC55C;        /* Darker Green */
    --primary-light: #76FFA8;       /* Lighter Green */
    
    /* Secondary Colors */
    --secondary-color: #9D00FF;     /* Vibrant Purple */
    --secondary-dark: #7A00C6;      /* Darker Purple */
    --secondary-light: #BE6FFF;     /* Lighter Purple */
    
    /* Accent Colors */
    --accent-color: #00CED1;        /* Teal accent */
    --accent-dark: #008B8B;         /* Dark Teal */
    
    /* Neutral Colors */
    --dark-color: #121212;          /* Near-black (more modern than pure black) */
    --gray-color: #222222;          /* Dark Gray */
    --mid-gray: #333333;            /* Medium Gray */
    --light-gray: #555555;          /* Light Gray */
    --silver-color: #AAAAAA;        /* Silver */
    
    /* Text Colors */
    --text-color: #FFFFFF;          /* Text color (white) */
    --text-light: #DDDDDD;          /* Light text */
    --text-muted: #999999;          /* Muted text */
    
    /* UI Elements */
    --border-radius: 8px;           /* Standard border radius */
    --border-radius-lg: 12px;       /* Larger border radius */
    --border-radius-sm: 4px;        /* Smaller border radius */
    
    /* Effects */
    --border-color: rgba(13, 255, 114, 0.3);  /* Transparent Green */
    --shadow-sm: 0 2px 10px rgba(13, 255, 114, 0.1);
    --shadow: 0 5px 20px rgba(13, 255, 114, 0.15);
    --shadow-lg: 0 10px 30px rgba(13, 255, 114, 0.2);
    --glow: 0 0 15px rgba(13, 255, 114, 0.4);
    
    /* Animation */
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--dark-color);
    margin: 0;
    padding: 0;
    padding-top: 80px;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Racing Sans One', 'Montserrat', sans-serif;
    margin-top: 0;
    line-height: 1.2;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

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

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

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

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Section Layouts */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
    position: relative;
}

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

.section-header h2 {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
}

.section-header p {
    max-width: 700px;
    margin: 1rem auto 0;
    color: var(--text-light);
}

/* Dividers */
.divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(13, 255, 114, 0.3), 
        rgba(157, 0, 255, 0.3), 
        transparent
    );
    margin: 2rem 0;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
    border: none;
    text-align: center;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(13, 255, 114, 0.3);
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 255, 114, 0.4);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(13, 255, 114, 0.3);
}

/* Cards and Features */
.card {
    background: var(--mid-gray);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(13, 255, 114, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(13, 255, 114, 0.3);
}

.card-header {
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(18, 18, 18, 0) 0%, 
        rgba(18, 18, 18, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    transition: var(--transition);
}

.card:hover .card-overlay {
    background: linear-gradient(to bottom, 
        rgba(13, 255, 114, 0.1) 0%, 
        rgba(18, 18, 18, 0.9) 100%);
}

.card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(13, 255, 114, 0.1);
}

.card-meta {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.card-meta i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.card-action {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.card-action:hover {
    color: var(--primary-light);
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.feature-card {
    padding: 2rem;
    background: var(--mid-gray);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(145deg, 
        rgba(34, 34, 34, 1) 0%, 
        rgba(51, 51, 51, 1) 100%);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    background: var(--dark-color);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    border-radius: inherit;
    opacity: 0.2;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon::before {
    opacity: 0.4;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.feature-link {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: var(--transition-fast);
}

.feature-link:hover {
    color: var(--primary-light);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: rgba(18, 18, 18, 0.85);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 255, 114, 0.1);
}

.navbar.scrolled {
    padding: 0.3rem 5%;
    background: rgba(18, 18, 18, 0.95);
    box-shadow: var(--shadow);
}

.logo {
    max-height: 60px;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(13, 255, 114, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 15px;
    padding: 8px 0;
    transition: var(--transition-fast);
    position: relative;
}

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

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition-fast);
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 5% 4rem;
    background-color: var(--dark-color);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(157, 0, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(13, 255, 114, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 1px;
    color: var(--text-color);
}

.hero h1 span {
    position: relative;
    display: inline-block;
}

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

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.3;
    border-radius: 4px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-light);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-image {
    position: relative;
    z-index: 1;
    margin-top: 3rem;
}

.hero-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    height: auto;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
    border: 1px solid rgba(13, 255, 114, 0.2);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: var(--glow), var(--shadow-lg);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    z-index: 3;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
    color: var(--primary-light);
}

.scroll-down i {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.3), 1px 1px 0 rgba(0, 0, 0, 1);
}

.section-header h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    margin: 0.5rem auto 0;
}

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

/* Featured Designs */
.featured-designs {
    padding: 3rem 0;
    background: var(--dark-color);
}

.designs-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

.design-slide {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: none;
    background: white;
    aspect-ratio: 16/9;
    position: relative;
    margin-bottom: 2rem;
    padding: 20px;
}

.design-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.design-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    border-radius: 10px;
}

/* Gallery Section */
.gallery-section {
    position: relative;
    padding: 5rem 0;
    background-color: var(--dark-color);
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(13, 255, 114, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(157, 0, 255, 0.05) 0%, transparent 30%);
    z-index: 0;
}

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

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

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
    aspect-ratio: 3/4;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, 
        rgba(18, 18, 18, 0.9) 0%, 
        rgba(18, 18, 18, 0.2) 40%, 
        rgba(18, 18, 18, 0) 100%);
    z-index: 1;
    opacity: 0.7;
    transition: var(--transition);
}

.gallery-item:hover::before {
    opacity: 0.9;
    background: linear-gradient(to top, 
        rgba(18, 18, 18, 0.95) 0%, 
        rgba(13, 255, 114, 0.2) 100%);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0.9;
    transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-item-overlay p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    max-width: 90%;
}

.gallery-item-overlay .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 2rem;
    background-color: var(--bg-color-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(13, 255, 114, 0.1);
    backdrop-filter: blur(10px);
}

.faq-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(13, 255, 114, 0.1);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item h3:hover {
    background-color: rgba(13, 255, 114, 0.05);
}

.faq-item h3 i {
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 16px;
}

.faq-item h3.active {
    background-color: rgba(13, 255, 114, 0.1);
}

.faq-item h3.active i {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-answer.active {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Cards and Features */
.feature-card {
    background: var(--gray-color);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 0, 0.1);
}

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

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

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--dark-color), var(--gray-color));
    color: var(--text-light);
    padding: 3rem 5% 0;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('grid-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.footer-logo img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0, 255, 0, 0.3));
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2rem;
    width: 100%;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 2rem;
    padding: 0 1.5rem;
}

.footer-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin-top: 8px;
}

.footer-column a {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
    line-height: 1;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(0, 255, 0, 0.1);
    font-size: 0.9rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(0, 255, 0, 0.2);
}

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

/* Clean modern styling for headings */
.heading-backdrop {
    background: rgba(0, 255, 0, 0.05);
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.heading-backdrop h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.heading-backdrop p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Page Header */
.page-header {
    position: relative;
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    background-color: var(--dark-color);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(13, 255, 114, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(157, 0, 255, 0.15) 0%, transparent 50%);
    z-index: 1;
}

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

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.heading-backdrop {
    display: inline-block;
    position: relative;
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.heading-backdrop h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header-content p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: var(--text-light);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.section-header .heading-backdrop {
    padding: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}

.section-header .heading-backdrop h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-section {
    position: relative;
    padding: 5rem 2rem;
    background-color: var(--dark-color);
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(13, 255, 114, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(157, 0, 255, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.contact-info h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background-color: rgba(13, 255, 114, 0.1);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 255, 114, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-method:hover .contact-icon {
    transform: scale(1.1);
    background-color: rgba(13, 255, 114, 0.2);
}

.contact-details h3 {
    margin: 0 0 0.5rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info h2::after {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Privacy & Refund Pages */
.privacy-container,
.refund-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 5%;
}

.privacy-section,
.refund-section {
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 25px rgba(106, 27, 154, 0.08);
}

.privacy-section h2,
.refund-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.privacy-section p,
.refund-section p,
.refund-section li {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.privacy-section a,
.refund-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.privacy-section a:hover,
.refund-section a:hover {
    color: var(--primary-dark);
}

.refund-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Enhanced image display for catalog page */
.gallery-item,
.design-slide {
    border: none;
    padding: 20px;
    background: transparent;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1, 
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .contact-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 2rem;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-links {
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 5%;
    }
    
    .hero h1, 
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-left: 1px solid rgba(0, 255, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        font-weight: 500;
        width: 100%;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    }
    
    .gallery-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin: 0 auto 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .gallery-grid,
    .designs-slider {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 1rem 5%;
    }
    
    .gallery-item::after,
    .design-slide::after {
        height: 40%;
    }
    
    .gallery-grid {
        padding: 2rem 5%;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 75px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        position: relative;
        margin-right: 5px;
    }
    
    .mobile-menu-btn i {
        color: var(--primary-color);
        font-size: 1.8rem;
        pointer-events: none;
    }
    
    .navbar {
        padding: 0.3rem 15px;
        width: 100vw;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .logo {
        height: 60px;
        margin-left: 0;
    }
    
    .logo img {
        max-width: 180px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 280px;
        height: 100vh;
        background: var(--dark-color);
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-color);
        font-size: 1.2rem;
        font-weight: 500;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 255, 0, 0.1);
    }
    
    .gallery-grid,
    .designs-slider {
        grid-template-columns: 1fr;
        padding: 1rem 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin: 0 auto 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-grid,
    .designs-slider {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        padding: 1rem 5%;
    }
    
    .gallery-item::after,
    .design-slide::after {
        height: 40%;
    }
    
    .gallery-grid {
        padding: 2rem 5%;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 360px) {
    .navbar {
        padding: 0.2rem 10px;
    }
    
    .logo {
        height: 60px;
    }
    
    .logo img {
        max-width: 150px;
    }
}

/* Contact Form Styling */
.contact-form-container {
    background-color: rgba(30, 30, 30, 0.7);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(13, 255, 114, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(13, 255, 114, 0.2);
    padding: 0.8rem;
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(13, 255, 114, 0.2);
}

.form-group button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    padding: 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-group button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.form-group button:active {
    transform: translateY(0);
}

.form-group button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-response {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.success-message,
.error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.success-message i,
.error-message i {
    font-size: 3rem;
}

.success-message i {
    color: var(--primary-color);
}

.error-message i {
    color: #ff3333;
}

.success-message h3,
.error-message h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.success-message p,
.error-message p {
    margin: 0.5rem 0;
}