/* ============================================
   GURGAON TILE WORKS - CUSTOM STYLES
   ============================================ */

:root {
    /* Color Palette */
    --primary: hsl(215, 32%, 40%);
    --primary-light: hsl(215, 32%, 50%);
    --primary-foreground: hsl(210, 40%, 98%);

    --secondary: hsl(14, 77%, 55%);
    --secondary-light: hsl(14, 77%, 60%);
    --secondary-foreground: hsl(0, 0%, 100%);

    --background: hsl(210, 20%, 98%);
    --foreground: hsl(215, 25%, 27%);

    --border: hsl(215, 15%, 85%);
    --muted: hsl(210, 20%, 90%);
    --muted-foreground: hsl(215, 15%, 45%);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    width: 100%;
    overflow-x: clip
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
    transition: opacity 0.3s ease;
}

.navbar-brand:hover {
    opacity: 0.9;
}

.navbar-icon {
    color: var(--secondary);
    width: 24px;
    height: 24px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    color: var(--foreground);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
    font-weight: bold;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--foreground);
    transition: all 0.3s ease;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
    z-index: 80;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   BUTTONS
   ============================================ */
.inset-0 {
    inset: calc(var(--spacing) * 0);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.btn-secondary:hover {
    background-color: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    height: 56px;
    display: inline-flex;
    align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("../images/hero.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(1 8 20 / 47%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    max-width: 48rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-accent {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.075em;
}

.hero-accent::before {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
}

.hero-accent span {
    color: var(--secondary);
}

.hero h1 {
    color: white;
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
    font-size: 4.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    max-width: 28rem;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: var(--spacing-2xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-accent {
    display: inline-block;
    color: var(--secondary);
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
}

/* ============================================
   FEATURE CARDS
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.feature-card {
    padding: var(--spacing-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    margin: 0 auto var(--spacing-md);
    padding: 10px;
    background-color: rgba(65, 97, 131, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--muted-foreground);
}

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideInScale 0.5s ease-out;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.service-card-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
    z-index: 1;
}

.service-card:hover .service-card-image::before {
    background: rgba(0, 0, 0, 0.1);
}

.service-card-content {
    padding: var(--spacing-lg);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
}

.service-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.service-card-footer {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--secondary);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.service-card:hover .service-card-footer {
    gap: var(--spacing-md);
}

.review {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
}

.review h2 {
    margin-bottom: var(--spacing-md);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    font-weight: bold;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-sm);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) 0;
    border: none;
    border-bottom: 2px solid var(--border);
    background-color: transparent;
    font-family: var(--font-body);
    color: var(--foreground);
    transition: border-color 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--secondary);
}

.form-control::placeholder {
    color: var(--muted-foreground);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--spacing-xs);
}

.form-success {
    padding: var(--spacing-lg);
    background-color: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
    margin-bottom: var(--spacing-lg);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3 {
    color: var(--secondary);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: var(--spacing-md);
}

.footer-brand svg {
    color: var(--secondary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.contact-item {
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.contact-item strong {
    color: white;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    display: flex;
}

.social-links a:hover {
    color: var(--secondary);
}

/* ============================================
   PAGES SPECIFIC
   ============================================ */

.page-header {
    background-color: var(--primary);
    color: var(--primary-foreground);
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 32rem;
    margin: 0 auto;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.column-image img {
    width: 100%;
    object-fit: cover;
    transition: filter 0.7s ease;
}

.two-column:hover .column-image img {
    filter: grayscale(0);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.value-card {
    background-color: white;
    padding: var(--spacing-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid transparent;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-top-color: var(--secondary);
}

.value-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.value-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
}

.process-card {
    position: relative;
    padding: var(--spacing-lg);
    background-color: white;
    border: 1px solid var(--border);
}

.process-card::before {
    content: attr(data-step);
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 3rem;
    font-family: var(--font-heading);
    color: rgba(65, 97, 131, 0.05);
}

.process-card h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
}

.contact-info-section h2 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item-box {
    display: flex;
    gap: var(--spacing-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(65, 97, 131, 0.1);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.contact-item-box h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.125rem;
}

.contact-item-box p {
    color: var(--muted-foreground);
    font-size: 0.95rem;
}

.contact-item-box a {
    color: var(--secondary);
}

.contact-item-box a:hover {
    text-decoration: underline;
}

.map-placeholder {
    height: 256px;
    width: 100%;
    background-color: var(--muted);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: bold;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: var(--spacing-lg);
    transition: background-color 0.3s ease;
}

.map-placeholder:hover {
    background-color: rgba(65, 97, 131, 0.05);
}

.contact-form {
    background-color: white;
    padding: var(--spacing-lg);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.form-grid .form-group:last-child {
    grid-column: 1 / -1;
}

.cta-section {
    background-color: var(--primary-foreground);
    color: white;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.cta-section h2 {
    color: var(--foreground);
    margin-bottom: var(--spacing-lg);
}

.cta-section p {
    color: var(--foreground);
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .container a {
    background-color: var(--secondary-light);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
.menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--foreground);
}

.gmb-gallery-preview {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}
.gmb-gallery-preview h2 {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}
.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.preview-grid img,
.preview-more {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 14px;
    object-fit: cover;
}

.preview-more {
    position: relative;
    overflow: hidden;
}

.preview-more img {
    filter: brightness(0.6);
}

.preview-more span {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.full-gallery {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}
.full-gallery h1{
    margin-bottom: var(--spacing-lg);
    text-align: center;
}


/* Responsive */
@media (max-width: 1024px) {
    .gallery { column-count: 3; }
}

@media (max-width: 768px) {
    .gallery { column-count: 2; }
}

@media (max-width: 480px) {
    .gallery { column-count: 1; }
}

.gallery-grid {
    column-count: 4;
    column-gap: 16px;
}


.gallery-grid img {
    width: 100%;
    margin-bottom: 16px;
    border-radius: 12px;
    break-inside: avoid;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .navbar-menu {
        position: fixed;
        inset: 0 0 0 auto;
        width: 260px;
        height: 100dvh;
        background: #fff;

        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        font-family: Oswald,sans-serif;
        font-weight: bolder;

        padding: 60px 20px 20px;

        transform: translate3d(100%, 0, 0);
        transition: transform 0.35s ease;

        z-index: 90;
        box-shadow: -6px 0 20px rgba(0, 0, 0, 0.15);
        will-change: transform;
    }

    .navbar-menu.active {
        transform: translate3d(0, 0, 0);
    }

    .navbar-menu a {
        font-weight: bolder;
        font-size: 1.2em;
        border-bottom: none;
        padding: 10px 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .menu-close {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn,
    .btn-lg {
        width: 100%;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .review {
        padding-inline: 20px;
    }


    .contact-form-container {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    section {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .navbar-menu {
        width: 200px;
    }

    .hero {
        height: 60vh;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .navbar-container {
        height: 60px;
    }

    .navbar-brand {
        font-size: 1rem;
    }

    .navbar-icon {
        width: 20px;
        height: 20px;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }
}
/* ==============================
   FAQ ACCORDION
============================== */

.faq {
    max-width: 900px;
    margin: auto;
    padding: var(--spacing-2xl);
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* Title */
.faq > h2 {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    color: var(--primary);
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
}

/* Question */
.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    position: relative;
    padding-right: 40px;
    transition: color var(--speed-fast) var(--ease);
}

/* Plus / Minus Icon */
.faq-item h3::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

/* Answer */
.faq-item p {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    color: var(--muted-foreground);
    line-height: 1.7;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

/* Active State */
.faq-item.active h3 {
    color: var(--secondary);
}

.faq-item.active h3::after {
    content: "−";
}

.faq-item.active p {
    max-height: 300px;
    opacity: 1;
    margin-top: var(--spacing-sm);
}

/* Mobile */
@media (max-width: 768px) {
    .faq {
        padding: var(--spacing-lg);
        margin: var(--spacing-2xl) var(--spacing-md);
    }

    .faq-item h3 {
        font-size: 1rem;
    }
}
