/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed navbar */
}

:root {
    /* Luxury Black & Gold Palette */
    --luxury-black: #090909;
    --rich-black: #111111;
    --card-bg: #181818;
    --secondary-bg: #202020;
    --pure-white: #FFFFFF;
    --white: #FFFFFF;
    --light-gray: #D9D9D9;
    --muted-gray: #9A9A9A;
    --paragraph-gray: #B8B8B8;
    --text-gray: #333333;
    --dark-gray: #1F2937;
    --primary-blue: #0066FF;
    --primary-coral: #FF6B54;

    --premium-gold: #D4AF37;
    --luxury-gold: #E6C15A;
    --soft-gold: #F2D16B;
    --dark-gold: #B88A28;

    --gold-border-rgba: rgba(212,175,55,0.15);
    --gold-hover-shadow: 0 0 30px rgba(212,175,55,0.45);
    --gold-hover-shadow-strong: 0 20px 60px rgba(212,175,55,0.20);

    --transition: all 0.28s cubic-bezier(.2,.9,.2,1);
}

/* Ensure font-display swap is applied */
@font-face {
    font-family: 'Inter';
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--paragraph-gray);
    line-height: 1.7;
    font-weight: 400;
    font-size: 16px;
    background: var(--luxury-black);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

h1 { font-size: 56px; font-weight: 700; }
h2 { font-size: 44px; font-weight: 700; }
h3 { font-size: 34px; font-weight: 600; }
h4 { font-size: 28px; font-weight: 600; }
h5 { font-size: 22px; font-weight: 600; }
h6 { font-size: 18px; font-weight: 600; }

button, input, textarea, select, a, label, li, p, span {
    font-family: 'Inter', sans-serif;
}

input::placeholder, textarea::placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

button, .btn, .btn-phone, .newsletter-btn {
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.nav-link {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.footer-section p,
.service-card p,
.about-text p,
.hero-description,
.section-subtitle,
.footer-bottom p,
.newsletter-input,
.nav-link,
.social-links a {
    font-weight: 400;
}

.footer-bottom P a.akaria,
.footer-bottom P a.akaria:link,
.footer-bottom P a.akaria:visited,
.footer-bottom  P a.akaria:hover,
.footer-bottom P a.akaria:focus,
.footer-bottom P a.akaria:active {
    text-decoration: none !important;
    color: inherit;
}


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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(9,9,9,0.92);
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
    transition: var(--transition);
    overflow: visible;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 2rem;
    min-height: 96px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Logo image sizing and alignment */
.logo-image {
    height: 96px;
    width: 96px;
    display: block;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .logo-image { height: 80px; width: 80px; }
}

@media (max-width: 480px) {
    .logo-image { height: 56px; width: 56px; }
    .navbar-container {
        padding: 0.7rem 1rem;
        min-height: 64px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--pure-white);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover { color: var(--soft-gold); }

.nav-link.active { color: var(--premium-gold); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--premium-gold);
}

.cta-button .btn-cta {
    display: inline-block;
    background: var(--premium-gold);
    color: var(--luxury-black);
    padding: 0.7rem 1.8rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.cta-button .btn-cta:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: var(--gold-hover-shadow);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--light-gray);
    margin: 5px 0;
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    margin-top: 70px;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, rgba(9,9,9,1) 0%, rgba(17,17,17,1) 100%);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 600px;
}

.hero-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s ease;
    visibility: hidden;
}

.hero-slide.active {
    opacity: 1;
    position: relative;
    visibility: visible;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Animation only on active slide content */
.hero-slide.active .hero-content {
    animation: slideInLeft 0.6s ease;
}

.hero-slide.active .hero-image-wrapper {
    animation: slideInRight 0.6s ease;
}

.hero-label {
    color: var(--premium-gold);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    line-height: 1.08;
    color: var(--pure-white);
}

.highlight-primary { color: var(--premium-gold); }
.highlight-secondary { color: var(--luxury-gold); }

.hero-description {
    font-size: 1.05rem;
    color: var(--paragraph-gray);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: var(--premium-gold);
    color: var(--luxury-black);
}

.btn-primary:hover {
    background: var(--luxury-gold);
    transform: translateY(-2px);
    box-shadow: var(--gold-hover-shadow);
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    color: var(--premium-gold);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-phone:hover {
    background: var(--premium-gold);
    color: var(--luxury-black);
    transform: translateY(-2px);
    box-shadow: var(--gold-hover-shadow);
}

.phone-icon { font-size: 1.2rem; }

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.image-decoration {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 65%);
    bottom: -80px;
    right: -80px;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 400;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--gold-hover-shadow-strong);
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.hero-image:hover { transform: scale(1.02); }

/* Decorative Shapes */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.decoration-top-left {
    width: 200px;
    height: 200px;
    background: rgba(212,175,55,0.06);
    top: -50px;
    left: -50px;
}

.decoration-bottom-right {
    width: 300px;
    height: 300px;
    background: rgba(212,175,55,0.06);
    bottom: -100px;
    right: -100px;
}

/* Carousel Pagination */
.carousel-pagination {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 3rem;
    padding-left: 20px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border: 2px solid var(--premium-gold);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-dot.active {
    background: var(--premium-gold);
    width: 30px;
    border-radius: 6px;
}

/* ==================== SERVICES SECTION ==================== */
.services-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--muted-gray);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

/* Higher contrast subtitle for light sections */
.portfolio-section .section-subtitle,
.videos-section .section-subtitle,
.contact-section .section-subtitle {
    color: #666666;
}

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

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 6px 30px rgba(0,0,0,0.6);
    border: 1px solid var(--gold-border-rgba);
    contain: layout style;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--premium-gold);
    box-shadow: var(--gold-hover-shadow-strong);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--premium-gold);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
}

.service-card p {
    color: var(--muted-gray);
    line-height: 1.8;
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 80px 0;
    background: var(--rich-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--pure-white);
}

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

.about-list { list-style: none; }

.about-list li {
    padding: 0.8rem 0;
    font-weight: 500;
    color: var(--paragraph-gray);
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 400;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

/* ==================== PORTFOLIO SECTION ==================== */
.portfolio-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

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

.portfolio-item.hidden { display: none; }
.video-card.hidden { display: none; }

.video-controls {
    text-align: center;
    margin-top: 1.5rem;
}

.video-controls .btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
}

.portfolio-controls {
    text-align: center;
    margin-top: 1.5rem;
}

.portfolio-controls .btn {
    padding: 0.8rem 2rem;
    border-radius: 30px;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    contain: layout style;
}

.lightbox.hidden { display: none; }

.lb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(2px);
}

.lb-inner {
    position: relative;
    max-width: 1100px;
    max-height: 85vh;
    padding: 20px;
    z-index: 2002;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lb-inner img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 30px rgba(212,175,55,0.08);
}

.lb-caption {
    color: var(--muted-gray);
    font-size: 0.95rem;
    text-align: center;
}

.lb-close,
.lb-prev,
.lb-next {
    position: absolute;
    z-index: 2003;
    background: transparent;
    border: none;
    color: var(--pure-white);
    font-size: 36px;
    line-height: 1;
    padding: 10px 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lb-close { top: 18px; right: 24px; font-size: 32px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); font-size: 48px; }

.lb-prev:hover, .lb-next:hover, .lb-close:hover {
    color: var(--soft-gold);
    text-shadow: 0 0 18px rgba(212,175,55,0.6);
}

@media (max-width: 768px) {
    .lb-prev, .lb-next { font-size: 34px; }
    .lb-close { font-size: 28px; }
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 9, 9, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--premium-gold);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item:hover img { transform: scale(1.1); }

.portfolio-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ==================== VIDEOS SECTION ==================== */
.videos-section {
    padding: 80px 0;
    background: var(--rich-black);
}

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

.video-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--gold-border-rgba);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    transition: var(--transition);
    contain: layout style;
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: #000;
}

.video-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: var(--premium-gold);
    text-shadow: 0 4px 18px rgba(0,0,0,0.6);
    pointer-events: none;
    z-index: 1;
}

.vh-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: var(--gold-hover-shadow-strong);
}

.video-card iframe {
    border: none;
    display: block;
}

.video-card h3 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1rem;
    color: var(--pure-white);
}

/* Video lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2100;
    contain: layout style;
}

.video-lightbox.hidden { display: none; }

.vb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

.vb-inner {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2102;
}

.vb-inner iframe {
    width: 100%;
    height: 66vh;
    border: none;
    border-radius: 8px;
}

.vb-close, .vb-prev, .vb-next {
    position: absolute;
    z-index: 2103;
    background: transparent;
    border: none;
    color: var(--pure-white);
    font-size: 36px;
    padding: 8px 12px;
    cursor: pointer;
}

.vb-close { top: 16px; right: 20px; }
.vb-prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 48px; }
.vb-next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 48px; }

.vb-prev:hover, .vb-next:hover, .vb-close:hover { color: var(--soft-gold); }

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 0;
    background: var(--secondary-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid var(--gold-border-rgba);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
    transition: var(--transition);
    contain: layout style;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--premium-gold);
    box-shadow: var(--gold-hover-shadow-strong);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--premium-gold);
}

.contact-card h3 {
    color: var(--pure-white);
    margin-bottom: 0.5rem;
}

.contact-card p { color: var(--paragraph-gray); }

.contact-card a {
    color: var(--premium-gold);
    text-decoration: none;
    transition: var(--transition);
}

.contact-card a:hover { color: var(--luxury-gold); }

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--gold-border-rgba);
    box-shadow: 0 5px 20px rgba(0,0,0,0.6);
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: var(--secondary-bg);
    color: var(--pure-white);
    border: 1px solid var(--gold-border-rgba);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--premium-gold);
    box-shadow: 0 0 10px rgba(212,175,55,0.2);
}

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

.contact-form button { align-self: flex-start; }

/* ==================== FOOTER ==================== */
.footer {
    background: #070707;
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--pure-white);
}

.footer-section p {
    color: var(--muted-gray);
    margin-bottom: 1rem;
}

.footer-section ul { list-style: none; }

.footer-section ul li { margin-bottom: 0.8rem; }

.footer-section a {
    color: var(--premium-gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover { color: var(--soft-gold); }

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    color: var(--premium-gold);
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--soft-gold);
    transform: translateY(-1px);
}

.social-links a svg {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    min-width: 18px;
    min-height: 18px;
    fill: currentColor;
}

.newsletter-input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    margin-top: 0.5rem;
    color: var(--luxury-black);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 0.5rem;
}

.newsletter-form .newsletter-input {
    flex: 1;
    min-width: 0;
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    white-space: nowrap;
}

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

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--premium-gold);
    color: var(--luxury-black);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--luxury-gold);
    transform: translateY(-3px);
    box-shadow: var(--gold-hover-shadow);
}

/* ==================== ANIMATIONS ==================== */
.anim-ready {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.anim-ready.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-wrapper { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {

    /* ── Hamburger ── */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        z-index: 1200;
        position: relative;
        cursor: pointer;
        padding: 4px;
    }

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--pure-white);
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.2s ease, background 0.2s ease;
        transform-origin: center;
    }

    /* Animate bars → X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--premium-gold);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background: var(--premium-gold);
    }

    /* ── Backdrop ── */
    .nav-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 1050;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        transition: opacity 0.3s ease;
    }
    .nav-backdrop.active { display: block; }

    /* ── Drawer panel ── */
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;

        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        z-index: 1100;

        background: #111;
        border-left: 1px solid rgba(212,175,55,0.25);
        box-shadow: -8px 0 40px rgba(0,0,0,0.8);

        padding-top: 100px;

        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-menu.active { transform: translateX(0); }

    /* ── Nav links ── */
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--paragraph-gray);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        border-left: 3px solid transparent;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: all 0.2s ease;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--premium-gold);
        background: rgba(212,175,55,0.06);
        border-left-color: var(--premium-gold);
        padding-left: 1.8rem;
    }

    .nav-menu .nav-link.active::after { display: none; }

    /* ── Gold strip at top of drawer ── */
    .nav-menu::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--premium-gold), var(--soft-gold));
    }

    /* ── Hide desktop CTA ── */
    .cta-button { display: none; }

    .hero-title { font-size: 1.8rem; }
    .hero-label { font-size: 0.8rem; }
    .hero-actions { flex-direction: column; gap: 1rem; }

    .btn,
    .btn-primary,
    .btn-phone {
        width: 100%;
        text-align: center;
    }

    .services-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .section-header h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .navbar-container { padding: 0.8rem 1rem; }

    .nav-menu .nav-link:first-child { margin-top: 64px; }

    .hero-section {
        margin-top: 60px;
        padding: 40px 0 60px;
    }

    .carousel-container { min-height: 400px; }
    .hero-title { font-size: 1.5rem; }
    .hero-description { font-size: 0.95rem; }

    .cta-button .btn-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .services-section,
    .about-section,
    .portfolio-section,
    .videos-section,
    .contact-section {
        padding: 40px 0;
    }

    .services-grid,
    .portfolio-grid,
    .videos-grid {
        gap: 1rem;
    }

    .contact-form { padding: 1.5rem; }
}

/* ==================== INSTAGRAM HOVER EFFECT ==================== */
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--paragraph-gray);
    transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-link .insta-shape {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.instagram-link:hover .insta-shape { fill: url(#instaGradient); }
.instagram-link:hover { transform: translateY(-1px); }
