* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --accent-color: #d4af37;
    --accent-light: #e8c547;
    --light-bg: #f8f8f8;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-color: rgba(255, 255, 255, 0.7);
    --border-color: #e0e0e0;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glow: 0 0 30px rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: #0a0a0a;
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 3px;
}

.logo-tagline {
    font-size: 0.65rem;
    color: var(--accent-color);
    letter-spacing: 2px;
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu.active {
    display: flex;
    position: absolute;
    left: 0;
    top: 70px;
    flex-direction: column;
    background-color: rgba(26, 26, 26, 0.99);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    gap: 2rem;
    padding: 2rem;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-carousel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.8s ease-in-out, transform 4s ease-out;
}

.hero-carousel img.active {
    opacity: 1;
    transform: scale(1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(10,10,10,0.5) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.15) 0%, rgba(10,10,10,0.55) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1.5s ease-out;
    padding: 3.5rem 5rem;
    background: rgba(10, 10, 10, 0.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.hero-title {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 12px;
    background: linear-gradient(to right, #fff 20%, var(--accent-color) 50%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: textShine 5s linear infinite;
}

@keyframes textShine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--accent-light);
    margin-bottom: 2.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    position: relative;
    display: block;
    padding-bottom: 20px;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-color);
    border: none;
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
}

.cta-button:hover::before {
    left: 100%;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Pagination Controls */
.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-nav-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-nav-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

#galleryPageInfo {
    color: var(--text-color);
    font-size: 1.1rem;
    letter-spacing: 3px;
    font-weight: 300;
}

/* Sections */
.portfolio,
.contact {
    padding: 6rem 0;
}

.portfolio {
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
}

.contact {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 10px;
    background: linear-gradient(to right, #fff 20%, var(--accent-color) 50%, #fff 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    animation: textShine 5s linear infinite;
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.filter-buttons::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    padding: 0.7rem 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(255,255,255,0.03);
    color: rgba(255,255,255,0.6);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #0a0a0a;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.gallery-viewer-container {
    max-width: 1400px;
    margin: 2rem auto;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    position: relative;
}

.main-image-display {
    position: relative;
    width: 100%;
    margin: 0;
    height: 70vh;
    min-height: 500px;
    max-height: 750px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background: #000;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

#mainGalleryImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.main-image-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #050505;
    opacity: 0;
    transition: opacity 0.15s ease;
    pointer-events: none;
    z-index: 2;
}

.viewer-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 155px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 55%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.viewer-caption h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.viewer-caption p {
    color: var(--accent-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
}

.viewer-nav {
    position: absolute;
    top: calc(50% - 65px); /* shift up to stay above the thumbnail bar */
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-size: 1.4rem;
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 11;
    display: flex;
    justify-content: center;
    align-items: center;
}

.viewer-nav:hover {
    background: rgba(212, 175, 55, 0.35);
    border-color: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.viewer-nav.prev { left: 25px; }
.viewer-nav.next { right: 25px; }

.thumbnail-strip-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.thumbnail-strip {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    flex-grow: 1;
    padding: 5px;
    /* Hide scrollbar */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.thumbnail-strip::-webkit-scrollbar {
    display: none;
}

.thumbnail-img {
    height: 75px;
    width: 110px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 2px solid transparent;
    flex-shrink: 0;
}

.thumbnail-img:hover {
    opacity: 0.8;
}

.thumbnail-img.active {
    opacity: 1;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(212, 175, 55, 0.3);
}

.thumb-nav {
    background: rgba(0, 0, 0, 0.5);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.thumb-nav:hover {
    background: rgba(212, 175, 55, 0.4);
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease-out;
    z-index: 1000;
    position: relative;
    pointer-events: none;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    line-height: 1;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    z-index: 99999;
    padding: 10px 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.modal-close:hover {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.modal-prev,
.modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 99999;
    border-radius: 5px;
    pointer-events: auto;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.modal-caption {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1rem;
    letter-spacing: 3px;
    font-weight: 300;
    text-transform: uppercase;
}

/* Services Section */
.services-seo {
    background: linear-gradient(180deg, #111 0%, #0d0d0d 100%);
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 2rem;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(212, 175, 55, 0.08);
}

.service-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
    color: white;
    position: relative;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
    background: rgba(255,255,255,0.07);
}

.contact-form button {
    margin-top: 0.5rem;
}

.contact-info {
    background: rgba(255,255,255,0.04);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.contact-info p {
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.65);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.social-icon:hover::before {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 100%);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-top: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.footer p {
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.4); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        aspect-ratio: auto;
        min-height: 300px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    /* On mobile full-width buttons, ditch the ripple and use a solid fill instead */
    .filter-btn::before {
        display: none;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--accent-color);
        color: #0a0a0a;
        border-color: var(--accent-color);
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
}

/* ===================================
   About + FAQ Section
=================================== */
.about-section {
    background: #0a0a0a;
    padding: 80px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.12);
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2,
.faq-col h2 {
    font-size: 1.55rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.35;
    font-weight: 600;
}

.about-text p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    margin-bottom: 16px;
    font-size: 1rem;
}

.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.faq-item summary {
    padding: 15px 20px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
}

details.faq-item[open] > summary::after {
    content: '\2212';
}

.faq-item p {
    padding: 0 20px 16px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin: 0;
    font-size: 0.93rem;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2,
    .faq-col h2 {
        font-size: 1.3rem;
    }
}