        :root {
            --bg-cream: #FAF9F6;
            --text-charcoal: #1A1A1A;
            --text-light: #666666;
            --walnut-brown: #36251B;
            --walnut-light: #5C4033;
            --gold-accent: #D4AF37;
            --gold-hover: #AA7700;
            --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA7700 100%);
            --white: #FFFFFF;
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px; /* For fixed header */
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-charcoal);
            background-color: var(--bg-cream);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--walnut-brown);
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold-accent);
        }

        section {
            padding: 5rem 0;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: var(--gold-gradient);
            color: var(--white);
            font-weight: 500;
            border-radius: 4px;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, #AA7700 0%, #D4AF37 100%);
            z-index: -1;
            transition: opacity 0.4s ease;
            opacity: 0;
        }

        .btn:hover::before {
            opacity: 1;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.4);
            color: var(--white);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--gold-accent);
            color: var(--gold-accent);
        }

        .btn-outline::before {
            display: none;
        }

        .btn-outline:hover {
            background: var(--gold-gradient);
            color: var(--white);
            border-color: transparent;
            box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
        }

        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 10px 0;
            display: flex;
            align-items: center;
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--walnut-brown);
        }

        .logo span {
            color: var(--gold-accent);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links li a {
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold-accent);
            transition: var(--transition);
        }

        .nav-links li a:hover::after,
        .nav-links li a.active::after {
            width: 100%;
        }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--gold-accent);
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--walnut-brown);
            cursor: pointer;
            border: none;
            background: none;
        }

        /* --- HERO SLIDER SECTION --- */
        #anasayfa {
            height: 100vh;
            position: relative;
            overflow: hidden;
            background-color: var(--text-charcoal);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(26, 26, 26, 0.4), rgba(26, 26, 26, 0.8));
            z-index: 1;
        }

        @keyframes kenBurns {
            0% { transform: scale(1); }
            100% { transform: scale(1.08); }
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
            animation: kenBurns 6s linear forwards;
        }

        .slide-content {
            position: relative;
            z-index: 3;
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
            color: var(--white);
            padding: 0 20px;
            transform: translateY(30px);
            opacity: 0;
            transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
        }

        .slide.active .slide-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-content h1 {
            font-size: 4.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 300;
            letter-spacing: 1px;
            text-shadow: 0 5px 25px rgba(0,0,0,0.5), 0 2px 5px rgba(0,0,0,0.3);
        }

        .slide-content p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            color: #F8F6F0;
            font-weight: 300;
            text-shadow: 0 2px 15px rgba(0,0,0,0.5);
        }

        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 4;
            display: flex;
            gap: 12px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .slider-dot.active {
            background: transparent;
            border-color: var(--gold-accent);
            transform: scale(1.4);
        }

        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        .fade-up.stagger-1 { transition-delay: 0.1s, 0.1s; }
        .fade-up.stagger-2 { transition-delay: 0.2s, 0.2s; }
        .fade-up.stagger-3 { transition-delay: 0.3s, 0.3s; }
        
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- SERVICES SECTION --- */
        #hizmetler {
            background-color: var(--white);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            position: relative;
            background-color: var(--bg-cream);
            height: 380px;
            border-radius: 8px;
            overflow: hidden;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            text-decoration: none;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(26, 26, 26, 0.1) 100%);
            z-index: 1;
            transition: var(--transition);
        }

        .service-card:hover::before {
            background: linear-gradient(to top, rgba(212, 175, 55, 0.95) 0%, rgba(26, 26, 26, 0.6) 100%);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .service-content {
            position: relative;
            z-index: 2;
            padding: 2.5rem 2rem;
            transform: translateY(40px);
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .service-card:hover .service-content {
            transform: translateY(0);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--gold-accent);
            margin-bottom: 1rem;
            transition: var(--transition);
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }

        .service-card:hover .service-icon {
            color: var(--white);
            transform: scale(1.1);
        }

        .service-card h3 {
            font-size: 1.35rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: 500;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            opacity: 0;
            transition: opacity 0.4s ease 0.1s;
        }

        .service-card:hover p {
            opacity: 1;
        }

        /* --- ABOUT SECTION --- */
        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .about-text > p:first-of-type::first-letter {
            float: left;
            font-size: 4.5rem;
            line-height: 0.85;
            padding-right: 12px;
            padding-top: 8px;
            font-family: 'Playfair Display', serif;
            color: var(--gold-accent);
            text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
        }

        .about-image {
            flex: 1;
            position: relative;
            padding: 20px 20px 0 0;
        }

        .about-image img {
            width: 100%;
            border-radius: 4px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            position: relative;
            z-index: 2;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 85%;
            height: 90%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(170, 119, 0, 0.15) 100%);
            border: 2px solid var(--gold-accent);
            border-radius: 4px;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            color: var(--gold-accent);
            font-size: 1.5rem;
            margin-top: 3px;
        }

        .feature-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            font-family: 'Inter', sans-serif;
            color: var(--text-charcoal);
        }

        .feature-text p {
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* --- ARTICLES SECTION --- */
        #makale {
            background-color: var(--white);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .article-card {
            background-color: var(--bg-cream);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .article-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .article-content {
            padding: 2rem;
        }

        .article-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .article-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .read-more {
            color: var(--gold-accent);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--walnut-brown);
            gap: 8px;
        }

        /* --- BEFORE/AFTER SLIDER --- */
        .before-after-container {
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 2px solid var(--gold-accent);
        }
        
        .before-after-slider {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }
        
        .before-after-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .image-after, .image-before {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .image-before {
            width: 50%;
            z-index: 2;
            border-right: 2px solid var(--gold-accent);
        }
        
        .slider-handle {
            position: absolute;
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: transparent;
            outline: none;
            margin: 0;
            z-index: 4;
            cursor: ew-resize;
        }
        
        .slider-handle::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 40px;
            height: 500px;
            background: transparent;
            cursor: ew-resize;
        }
        
        .slider-line {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: var(--gold-gradient);
            z-index: 3;
            transform: translateX(-50%);
            pointer-events: none;
        }
        
        .slider-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gold-gradient);
            color: #1A1A1A;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
        }

        .before-after-slider .label {
            position: absolute;
            top: 20px;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.9rem;
            z-index: 3;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.2);
            pointer-events: none;
        }
        
        .label-before { left: 20px; }
        .label-after { right: 20px; }
        
        @media (max-width: 768px) {
            .before-after-slider { height: 350px; }
        }

        /* --- PORTFOLIO GALLERY --- */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
            aspect-ratio: 4/3;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .portfolio-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 26, 26, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .portfolio-overlay i {
            color: var(--gold-accent);
            font-size: 2.5rem;
            transform: scale(0.5);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover img {
            transform: scale(1.1);
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .portfolio-overlay i {
            transform: scale(1);
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }

        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 85vh;
            object-fit: contain;
            animation: zoomIn 0.3s ease;
            border-radius: 4px;
            box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        @keyframes zoomIn {
            from {transform:scale(0.8); opacity:0;}
            to {transform:scale(1); opacity:1;}
        }

        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            cursor: pointer;
        }

        .lightbox-close:hover,
        .lightbox-close:focus {
            color: var(--gold-accent);
            text-decoration: none;
            cursor: pointer;
        }

        /* --- CONTACT SECTION --- */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-info-wrapper {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--bg-cream);
            color: var(--gold-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .contact-item:hover .contact-icon {
            background-color: var(--gold-accent);
            color: var(--white);
        }

        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
            color: var(--walnut-brown);
        }

        .contact-text p, .contact-text a {
            color: var(--text-light);
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .contact-text a:hover {
            color: var(--gold-accent);
        }

        .contact-form {
            background-color: var(--white);
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-control {
            width: 100%;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition);
            background-color: #f9f9f9;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--gold-accent);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        .map-container {
            margin-top: 4rem;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--text-charcoal);
            color: var(--white);
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .footer-logo span {
            color: var(--gold-accent);
        }

        .footer-slogan {
            color: #aaa;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            background-color: rgba(255,255,255,0.1);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-icons a:hover {
            background-color: var(--gold-accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #888;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        /* --- FLOATING WHATSAPP --- */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
            color: #FFF;
        }

        .whatsapp-tooltip {
            position: absolute;
            left: 75px;
            background-color: #fff;
            color: #333;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            white-space: nowrap;
        }

        .whatsapp-tooltip::before {
            content: '';
            position: absolute;
            left: -5px;
            top: 50%;
            transform: translateY(-50%);
            border-width: 5px 5px 5px 0;
            border-style: solid;
            border-color: transparent #fff transparent transparent;
        }

        .whatsapp-float:hover .whatsapp-tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media screen and (max-width: 992px) {
            .about-content, .contact-container {
                flex-direction: column;
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media screen and (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                gap: 0;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: clip-path 0.4s ease-in-out;
            }

            .nav-links.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }

            .nav-links li {
                width: 100%;
                text-align: center;
            }

            .nav-links li a {
                display: block;
                padding: 1.5rem;
                border-bottom: 1px solid #f0f0f0;
            }

            .nav-links li a::after {
                display: none;
            }

            .nav-links li a:hover,
            .nav-links li a.active {
                background-color: var(--bg-cream);
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .whatsapp-float {
                bottom: 20px;
                left: 20px;
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
            
            .whatsapp-tooltip {
                display: none;
            }

            .dropdown-content {
                position: static;
                display: none;
                box-shadow: none;
                background-color: #f9f9f9;
                transform: none;
                opacity: 1;
                border-left: 3px solid var(--gold-accent);
            }
            .dropdown.active .dropdown-content {
                display: block;
            }
        }

        /* --- DROPDOWN MENU --- */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            background-color: var(--white);
            min-width: 250px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1001;
            border-radius: 4px;
            top: 100%;
            left: 0;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: var(--text-charcoal);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: var(--bg-cream);
            color: var(--gold-accent);
            padding-left: 20px;
        }
    </style>
/* WordPress Menu Overrides */
.nav-links .menu-item-has-children {
    position: relative;
}
.nav-links .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    z-index: 1000;
    padding: 0.5rem 0;
    list-style: none;
}
.nav-links .menu-item-has-children:hover .sub-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}
.nav-links .sub-menu li {
    margin: 0;
}
.nav-links .sub-menu li a {
    color: var(--text-charcoal) !important;
    padding: 0.8rem 1.5rem !important;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-links .sub-menu li:last-child a {
    border-bottom: none;
}
.nav-links .sub-menu li a:hover {
    background-color: var(--gold-accent);
    color: var(--white) !important;
    padding-left: 2rem !important;
}
.nav-links .sub-menu li a::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav-links .sub-menu {
        position: static;
        box-shadow: none;
        display: none;
        background-color: rgba(0,0,0,0.02);
        padding-left: 1rem;
    }
    .nav-links .menu-item-has-children.active .sub-menu {
        display: block;
    }
    .nav-links .sub-menu li a {
        padding: 0.5rem 1rem !important;
    }
}
/* Admin Bar Fix */
.admin-bar header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .admin-bar header {
        top: 46px;
    }
}
