/* Reset & Base */
:root {
    /* Brand Colors - Standard */
    --gold: #C6A87C;
    /* More muted, expensive gold */
    --gold-light: #E5D5BC;
    --black: #1A1A1A;
    /* Soft black */

    /* Backgrounds */
    --surface-light: #F9F7F5;
    /* Stone-50ish */
    --surface-white: rgba(255, 255, 255, 0.85);
    /* Glass base */
    --gold: #D4AF37;
    --gold-light: #E5C37F;
    --black: #0F0F0F;
    --surface-white: #FFFFFF;
    --surface-light: #F9F9F9;
    --text-primary: #1A1A1A;
    --text-secondary: #555555;

    /* Typography System Update */
    --font-heading: 'Playfair Display', serif;
    /* Headlines, titles, brand statements */
    --font-body: 'Poppins', sans-serif;
    /* Body text, UI elements */

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --spacing-section: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    background-color: #F2EFE9;
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    position: relative;
    background-image:
        radial-gradient(at 0% 0%, rgba(198, 168, 124, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(198, 168, 124, 0.05) 0px, transparent 50%);
    background-attachment: fixed;
}

body.premium-dark {
    background-color: #0f1012;
    color: #ffffff;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(184, 138, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(184, 138, 68, 0.1) 0%, transparent 50%);
}

.premium-dark .navbar {
    background: rgba(15, 16, 18, 0.7) !important;
    border-color: rgba(184, 138, 68, 0.2) !important;
}

.premium-dark .reveal.active {
    animation: glowReveal 1.2s cubic-bezier(0.2, 1, 0.2, 1) forwards;
}

@keyframes glowReveal {
    0% {
        opacity: 0;
        filter: blur(20px) brightness(0.5);
        transform: translateY(40px) scale(0.98);
    }

    100% {
        opacity: 1;
        filter: blur(0) brightness(1);
        transform: translateY(0) scale(1);
    }
}

/* Glass Card - Tech */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 138, 68, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(184, 138, 68, 0.1);
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.tech-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tech-card.reverse {
    direction: rtl;
}

.tech-card.reverse .tech-info {
    direction: ltr;
}

.tech-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tech-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.tech-card:hover .tech-visual img {
    transform: scale(1.05);
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(184, 138, 68, 0.4);
}

/* Silk Texture Overlay */
.silk-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: soft-light;
}

h1,
h2,
h3,
.brand-font {
    font-family: var(--font-heading);
    font-weight: 500;
    /* Standard Heading Weight */
}

/* Specific Typography Rules */
h1 {
    font-weight: 500;
    /* H1 Display */
    letter-spacing: -0.02em;
    /* Tight for Display */
}

h2 {
    font-weight: 500;
    /* H2 Section Heading */
    letter-spacing: -0.05em;
}

/* Sosyal Medya Duvarı */
.social-media-wall {
    padding: 100px 0;
    text-align: center;
}

.section-subtitle {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.wall-footer {
    margin-top: 20px;
    width: 100%;
}

.wall-footer .btn {
    width: 100%;
    display: flex;
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

h3 {
    font-weight: 400;
    /* H3 Subsection */
    /* Often italic or lighter */
}

p.lead-text,
.hero p {
    font-weight: 300;
    /* Light for lead text if Poppins */
}

.small-note,
caption,
.footer-links a,
.nav-links li a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    /* Small Text/Captions */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    /* Standardize max-width */
    margin: 0 auto;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* Organic Divider */
.organic-divider {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}

.organic-divider.top {
    top: 0;
}

.organic-divider.bottom {
    bottom: 0;
}

/* Navbar Transition & Style - Frosted Glass Sticky Pill */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 10px 30px;
    z-index: 1000;

    /* Enhanced Glassmorphism */
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(15, 15, 15, 0.85);
    /* Darker glass when scrolled */
    border-color: rgba(184, 138, 68, 0.3);
    /* Gold border hint */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 40px;
    /* Slightly wider */
}

.nav-container {
    width: 100%;
    /* Fill the pill */
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    /* Smaller Logo */
    width: auto;
    filter: sepia(10%) contrast(1.1);
    transition: height 0.3s;
}

.navbar.scrolled .logo-img {
    height: 35px;
    /* Even smaller on scroll */
}

/* Nav Links Horizontal & Compact */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    /* Reduced gap */
}

.nav-links li a {
    color: #fff;
    transition: color 0.4s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    letter-spacing: 0.05em;
    /* Tighter letter spacing */
    font-size: 0.85rem;
    white-space: nowrap;
    /* Prevent wrapping */
}

/* Buttons handled previously... */

/* Premium Card Styles (Glow Like Buttons) */
.service-card,
.trust-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(184, 138, 68, 0.15);
    /* Subtle Gold Border */
    border-radius: var(--radius-lg);
    padding: 50px 30px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
}

.service-card::before,
.trust-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    /* Border width */
    background: linear-gradient(135deg, transparent, rgba(184, 138, 68, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover,
.trust-item:hover {
    transform: translateY(-8px) scale(1.01);
    background: #fff;
    /* The Gold Glow Effect */
    box-shadow:
        0 20px 50px -10px rgba(184, 138, 68, 0.2),
        0 0 20px rgba(184, 138, 68, 0.1) inset;
    border-color: rgba(184, 138, 68, 0.6);
}

.service-card:hover::before,
.trust-item:hover::before {
    opacity: 1;
}

/* Contact Grid Glow */
.contact-grid {
    background: #fff;
    border: 1px solid rgba(184, 138, 68, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s;
}

.contact-grid:hover {
    box-shadow: 0 0 30px rgba(184, 138, 68, 0.15);
}

/* Trust Section - Compact & Horizontal */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns side-by-side */
    gap: 20px;
    /* Tighter gap */
}

.trust-item {
    background: var(--surface-white);
    border: 1px solid rgba(198, 168, 124, 0.2);
    padding: 25px 15px;
    /* Significantly reduced padding */
    border-radius: var(--radius-sm);
    /* Smaller radius */
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.trust-item img {
    height: 250px !important;
    /* Increased image height */
    width: 100%;
    object-fit: cover;
    margin-bottom: 25px !important;
    border-radius: var(--radius-sm);
}

.trust-item h3 {
    font-size: 1.1rem;
    /* Smaller title */
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trust-item p {
    font-size: 0.9rem;
    /* Smaller text */
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Services Grid & Visual Cards */
.services-section {
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card-visual {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(198, 168, 124, 0.15);
    /* Subtle border */
    display: flex;
    flex-direction: column;
}

.service-card-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(184, 138, 68, 0.2);
    border-color: rgba(184, 138, 68, 0.5);
    /* Gold border on hover */
}

.card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card-visual:hover .card-img img {
    transform: scale(1.05);
    /* Subtle zoom */
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.service-card-visual h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--black);
    font-weight: 600;
}

.service-card-visual p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Action Links in Card */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    /* Push to bottom */
    width: 100%;
}

.details-link {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-secondary);
    /* More subtle initially */
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
}

.details-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* Adjust button size for cards */
.service-card-visual .btn {
    padding: 10px 25px !important;
    /* Compact Standard Button */
    font-size: 0.75rem !important;
    min-width: auto;
}

/* Premium Accordion Styling */
.other-services-card .card-content {
    justify-content: center;
}

.premium-accordion {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.premium-accordion summary {
    list-style: none;
    /* Hide default arrow */
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.premium-accordion summary::-webkit-details-marker {
    display: none;
}

/* Chrome fix */

.premium-accordion summary:hover {
    color: var(--gold);
}

.premium-accordion summary .icon {
    font-size: 1.2rem;
    font-weight: 300;
}

.premium-accordion[open] summary .icon {
    transform: rotate(45deg);
    /* Turn + to x */
}

.premium-accordion ul {
    list-style: none;
    padding: 10px 0;
    margin: 0;
    animation: slideDown 0.3s ease-out;
}

.premium-accordion ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.premium-accordion ul li:last-child {
    border-bottom: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cleanup layout for .other-services */
.other-services .full-height-center {
    justify-content: center;
    min-height: 200px;
}

/* Mobile responsive for Trust Grid */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

/* Removed old .service-card styles as they are replaced by the combined .service-card, .trust-item rule */

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.details-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border 0.3s;
}

.details-link:hover {
    border-bottom-color: var(--gold);
}

/* Booking Strip - Premium */
.booking-strip {
    padding: 0;
}

.booking-strip .container {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 80px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjMjMxZjIwIiAvPgo8Y2lyY2xlIGN4PSIyIiBjeT0iMiIgcj0iMSIgZmlsbD0iIzMzMyIgLz4KPC9zdmc+');
    border: 1px solid var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.booking-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(198, 168, 124, 0.3);
}

/* Contact & Footer */
.section-full {
    height: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background: var(--surface-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.info-item h4 {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 1.1rem;
    color: var(--text-primary);
}

footer {
    background: transparent;
    padding: 80px 0 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: 60px;
}

.footer-logo {
    font-size: 2rem;
    letter-spacing: 0.3em;
    margin-bottom: 40px;
    color: var(--black);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 0 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Page Header & Common Detail Layouts */
.page-header {
    padding: 180px 0 100px 0;
    background: #000;
    /* Pure black base */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, #000 100%), url('hero-wave.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: #fff !important;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.service-category {
    margin-bottom: 100px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsive Tweaks */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
    }

    /* Fix for "not showing" issue - ensure basic visibility */
    .reveal {
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
}

/* Buttons - Black & Gold Premium Theme */
.btn,
.btn-primary,
.btn-gold,
.nav-btn {
    background: linear-gradient(135deg, #B88A44 0%, #E5C37F 50%, #B88A44 100%) !important;
    /* Premium Gold Gradient */
    background-size: 200% auto !important;
    color: #000 !important;
    /* Black text on Gold */
    border: 1px solid #E5C37F !important;
    border-radius: 9999px !important;
    /* Ensure Fully Rounded */
    padding: 16px 42px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(229, 195, 127, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    /* Inner & Outer Glow */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover,
.btn-primary:hover,
.btn-gold:hover,
.nav-btn:hover {
    background-position: right center !important;
    /* Shimmer effect */
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(229, 195, 127, 0.7), 0 0 10px rgba(229, 195, 127, 0.5);
    /* Stronger Glow */
    color: #1a1a1a !important;
}

/* Nav Button Specific Adjustment to be smaller if needed, but keeping style consistent */
.nav-btn {
    padding: 12px 32px;
    font-size: 0.75rem;
}

.service-item {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
}

.service-item:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

/* Adjust button size for service items in detail page */
.service-item .btn {
    padding: 10px 25px !important;
    font-size: 0.75rem !important;
    min-width: auto;
    margin-top: 15px;
}

/* Tabs */
.tabs {
    margin-bottom: 50px;
}

.tab-btn {
    border: 1px solid var(--gold-light);
    background: transparent;
    color: var(--text-secondary);
    padding: 15px 40px;
    margin: 0 5px;
    border-radius: var(--radius-full);
}

.tab-btn.active {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

/* Team Box Design - Premium Glow & 3x3 Layout */
.team-grid-section {
    background: var(--surface-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns Layout */
    gap: 30px;
    /* Space between cards */
    margin-top: 40px;
}

.team-card {
    background: #fff;
    padding: 0;
    border: 1px solid rgba(184, 138, 68, 0.15);
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 400px;
    /* Limit width */
    margin: 0 auto;
    /* Center in cell */
    width: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px -10px rgba(184, 138, 68, 0.2),
        0 0 15px rgba(184, 138, 68, 0.1) inset;
    border-color: rgba(184, 138, 68, 0.5);
}

.team-img-placeholder,
.team-card .card-img {
    width: 100%;
    height: auto !important;
    /* Override global 200px constraint */
    aspect-ratio: 9/16;
    /* Tall Portrait Box */
    border-radius: 0;
    margin-bottom: 0;
    transition: transform 0.5s ease;
    background-image: url('team-frame.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* For the ::before detail */
}

/* Gold Detail Hover Effect for Team Images */
.team-card .card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(184, 138, 68, 0.8), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: 3;
    pointer-events: none;
}

.team-card:hover .card-img::before {
    opacity: 1;
}

.team-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Changed from contain to cover for uniformity */
    padding: 0;
    /* Removing padding to match Hanife/Levent style */
}

.team-card:hover .card-img img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
    border-top: 3px solid var(--gold);
    /* Thinner border */
    background: #fff;
    position: relative;
    z-index: 1;
}

.team-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.team-info p {
    font-size: 0.9rem;
}

/* Mobile Responsive for Team */
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on tablet */
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        /* 1 col on mobile */
    }
}


/* --- Mobile Responsive & Premium UI --- */

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
    /* Above mobile menu */
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    /* White initially */
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 11px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Hamburger Toggle Animation */
.hamburger.toggle span:nth-child(1) {
    transform: rotate(45deg);
    top: 11px;
    background-color: var(--gold);
}

.hamburger.toggle span:nth-child(2) {
    opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 11px;
    background-color: var(--gold);
}

/* Color change when scrolled */
.navbar.scrolled .hamburger span {
    background-color: var(--gold);
}

.navbar.scrolled .hamburger.toggle span {
    background-color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    width: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Restoring Parallax BG Styles */
.hero-bg-wrapper {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    /* Taller for Parallax Movement */
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.hero-bg-anim {
    width: 100%;
    height: 100%;
    background-image: url('hero-wave.png');
    background-size: cover;
    background-position: center;
    /* Alive Breathing Animation */
    animation: heroBreath 15s ease-in-out infinite alternate;
}

@keyframes heroBreath {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    100% {
        transform: scale(1.1);
        filter: brightness(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark top for text readability, fading to transparent, then to body background color at the bottom */
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.2) 40%,
            transparent 70%,
            #F2EFE9 100%);
    z-index: 1;
    /* Above BG */
    backdrop-filter: blur(0px);
    /* Clear initially */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 60px;
}


/* Specific Typography Rules */
.hero h1 {
    font-size: 5.5rem;
    /* Increased from 4rem */
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    /* Reduced from 1.25rem */
    color: #ffffff !important;
    /* Pure White */
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
}

.small-note {
    font-size: 0.9rem !important;
    opacity: 0.9;
    margin-top: 20px;
}

/* Trust Section - Fix Overlap */
.trust-section {
    background-color: transparent;
    margin-top: 0;
    /* Removed negative margin causing overlap issues */
    padding-top: 80px;
    z-index: 10;
    position: relative;
}

.trust-item {
    background: var(--surface-white);
    border: 1px solid rgba(198, 168, 124, 0.2);
    padding: 40px 25px;
    /* Reduced padding */
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

/* Services */
.service-card {
    padding: 40px 30px;
    /* Reduced padding */
}

@media (max-width: 768px) {

    /* Root Spacing Adjustments */
    :root {
        --spacing-section: 80px;
        /* Smaller sections on mobile */
    }

    /* Fixed Navbar on Mobile */
    .navbar {
        width: 100% !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        border-radius: 0 !important;
        padding: 10px 20px !important;
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(184, 138, 68, 0.2) !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--gold);
        transition: all 0.3s ease;
    }

    /* Mobile Menu Drawer */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        height: 100vh !important;
        width: 100% !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(25px);
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 2.5rem !important;
        transform: translateX(100%) !important;
        transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) !important;
        z-index: 1000 !important;
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active {
        transform: translateX(0) !important;
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        font-family: var(--font-body) !important;
        /* Soften from heading font to body font for UI */
        font-size: 1.4rem !important;
        color: #fff !important;
        letter-spacing: 1px !important;
        text-transform: uppercase;
        display: block;
        width: 100%;
        padding: 8px 0;
        font-weight: 300;
        /* Lighter weight for modern feel */
    }

    /* Highlight style in mobile menu */
    .nav-links li a.nav-blog-highlight {
        color: var(--gold) !important;
        text-shadow: 0 0 15px rgba(212, 175, 55, 0.4) !important;
        font-weight: 700 !important;
    }

    .nav-btn {
        margin-top: 20px;
        font-size: 1.2rem !important;
        padding: 15px 40px !important;
    }

    /* Hamburger Animation to X */
    .hamburger.toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .hamburger.toggle span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -8px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .booking-strip .container {
        padding: 50px 20px;
        border-radius: 0;
        border: none;
        border-top: 1px solid var(--gold);
        border-bottom: 1px solid var(--gold);
        width: 100%;
        border-radius: 0;
    }

    .booking-content h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}

/* --- Blog Mobile Enhancements --- */
@media (max-width: 768px) {
    .blog-preview-section .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .blog-header {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }

    .brand-font {
        font-size: 2rem !important;
        letter-spacing: 1px;
    }

    .featured-post {
        margin-bottom: 40px !important;
    }

    .featured-image {
        height: 250px !important;
    }

    .featured-content {
        padding: 25px !important;
    }

    .featured-content h2 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .post-container {
        padding: 80px 20px 40px !important;
    }

    .post-header h1 {
        font-size: 1.8rem !important;
        line-height: 1.25;
        font-weight: 600;
    }

    .post-content {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
        color: #444;
    }

    .share-sidebar {
        display: none !important;
        /* Hide vertical share on mobile */
    }

    .back-to-top {
        width: 45px !important;
        height: 45px !important;
        bottom: 20px !important;
        right: 20px !important;
    }

    .nav-container .logo-img {
        max-height: 45px !important;
    }
}

.nav-blog-highlight {
    color: var(--gold) !important;
    font-weight: 600 !important;
    text-shadow: 0 0 10px rgba(214, 176, 52, 0.4);
}

/* Reveal Animation Overhaul */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.2, 1, 0.2, 1);
    will-change: transform, opacity, filter;
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
}

/* Image Art Frames */
.img-frame {
    position: relative;
    display: inline-block;
}

.img-frame::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--gold);
    z-index: -1;
    border-radius: var(--radius-md);
    transition: all 0.5s ease;
}

.img-frame:hover::after {
    transform: translate(-10px, -10px);
    background: rgba(184, 138, 68, 0.05);
}

/* Glow Enhancements for Service Cards */
.service-card-visual {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card-visual::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 138, 68, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-visual:hover::after {
    opacity: 1;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 1, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(40px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sparkle Cursor Fix - High Contrast for Light BG */
.sparkle {
    position: absolute;
    pointer-events: none;
    /* Rich Metallic Gold Gradient - Visible on White */
    background: radial-gradient(circle, #FFF 0%, #D4AF37 40%, #B8860B 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    /* Remove mix-blend-mode screen so it shows on light */
    /* Add subtle shadow for definition */
    box-shadow: 0 0 3px rgba(184, 138, 68, 0.3);
    animation: sparkleAnim 0.8s linear forwards;
}

@keyframes sparkleAnim {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -150%) scale(0);
    }
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

/* Custom Premium Form */
.premium-form {
    background: var(--surface-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(184, 138, 68, 0.1);
}

.premium-form .form-group {
    margin-bottom: 20px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid rgba(184, 138, 68, 0.3);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(184, 138, 68, 0.1);
}

.premium-form .form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.premium-form .form-check input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 3px;
    accent-color: var(--gold);
}

.premium-form .form-check label a {
    color: var(--gold);
    text-decoration: underline;
}

.premium-form .form-footer {
    margin-top: 30px;
    text-align: center;
}

.premium-form .form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-block {
    width: 100%;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
    font-weight: 500;
}

.form-message.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.1);
    color: #1a8f4c;
    border: 1px solid #1a8f4c;
}

.form-message.error {
    display: block;
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Other Services List (Direct View) */
.other-services-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: center;
}

.other-services-list li {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(184, 138, 68, 0.1);
}

.other-services-list li:last-child {
    border-bottom: none;
}

.category-header-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(184, 138, 68, 0.2);
    position: relative;
}

.category-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-header-img:hover img {
    transform: scale(1.03);
}

.category-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Success Container */
.form-success-container {
    text-align: center;
    padding: 40px;
    background: var(--surface-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(184, 138, 68, 0.1);
    animation: fadeIn 0.5s ease-out;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.form-success-container h3 {
    color: var(--gold);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.form-success-container p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Sticky CTA Visibility */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9998;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: #fff;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(184, 138, 68, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--dark-gold);
}

/* WhatsApp Chatbot Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 280px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(184, 138, 68, 0.1);
}

.whatsapp-bubble.visible {
    transform: scale(1);
    opacity: 1;
    pointer-events: all;
}

.bubble-header {
    background: #25d366;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 0.9rem;
}

.bubble-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.bubble-options {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bubble-options button {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Poppins', sans-serif;
}

.bubble-options button:hover {
    background: #e9ecef;
    border-color: var(--gold);
    color: var(--dark-gold);
}

/* Social Proof (Premium Refinement) */
.social-proof-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(246, 241, 233, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.proof-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 138, 68, 0.15);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
}

.proof-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(184, 138, 68, 0.1);
}

.proof-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.proof-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.proof-label {
    font-size: 1.1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.proof-sublabel {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 5px;
}



/* Form Layout Helper */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.small-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* --- Premium Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #29241e 0%, #080808 100%);
    /* Soft warm dark gradient */
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    position: relative;
}

.preloader-logo {
    width: 150px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(184, 138, 68, 0.5));
    animation: breathLogo 2s ease-in-out infinite alternate;
}

.loading-bar {
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
    animation: loadBar 2s ease-in-out forwards;
}

@keyframes breathLogo {
    from {
        transform: scale(0.95);
        opacity: 0.8;
    }

    to {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 20px rgba(184, 138, 68, 0.8));
    }
}

@keyframes loadBar {
    0% {
        width: 0%;
        opacity: 0;
    }

    50% {
        width: 50%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0;
    }
}

.loading-text {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: 15px;
    letter-spacing: 0.05em;
    opacity: 0;
    font-style: italic;
    /* Match 'Planlayalım' style */
    text-shadow: 0 0 10px rgba(184, 138, 68, 0.3);
    animation: fadeInText 1s ease-in-out forwards 0.5s;
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* Preloader Sparkles */
.preloader-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold);
    pointer-events: none;
    animation: sparkleFloat 2s linear forwards;
    z-index: 2;
}

@keyframes sparkleFloat {
    0% {
        transform: scale(0) translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: scale(1) translateY(-60px);
        opacity: 0;
    }
}

/* --- Parallax Typography --- */
.parallax-text-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    /* Behind everything */
    overflow: hidden;
}

.parallax-text {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 15vw;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(184, 138, 68, 0.08);
    /* Minimal gold outline */
    opacity: 0.6;
    white-space: nowrap;
    will-change: transform;
    left: -10%;
    font-style: italic;
    letter-spacing: -0.05em;
}

/* --- Premium Page Specific Styles --- */
.premium-dark {
    background: #080808;
    color: #fff;
}

.premium-dark .navbar.scrolled {
    background: rgba(8, 8, 8, 0.9);
}

.page-header {
    padding: 180px 0 80px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(184, 138, 68, 0.1) 0%, transparent 70%);
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.tech-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.tech-card.reverse {
    flex-direction: row-reverse;
}

.tech-visual {
    flex: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(184, 138, 68, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.tech-visual img {
    width: 100%;
    transition: transform 0.6s ease;
}

.tech-card:hover .tech-visual img {
    transform: scale(1.05);
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.tech-info {
    flex: 1;
}

.tech-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.tech-specs {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.tech-specs li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.tech-specs li span {
    color: var(--gold);
    font-weight: 600;
    margin-right: 10px;
}

@media (max-width: 992px) {

    .tech-card,
    .tech-card.reverse {
        display: flex;
        /* Switch to flex for column layout or keep grid 1fr */
        flex-direction: column;
        gap: 30px;
    }

    .mapping-container {
        flex-direction: column;
    }
}

/* Page Header Simple */
.page-header {
    padding-top: 180px;
    padding-bottom: 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--black);
    margin-bottom: 20px;
}

.page-header .lead-text {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}

.divider-gold {
    height: 2px;
    width: 60px;
    background-color: var(--gold);
    margin: 0 auto 30px;
}

/* Press Specific */
.press-date {
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar Light Theme (for light backgrounds) */
.navbar.navbar-light-theme .nav-links li a {
    color: #1a1a1a;
    text-shadow: none;
    font-weight: 600;
}

.navbar.navbar-light-theme .nav-links li a:hover {
    color: var(--gold);
}

.navbar.navbar-light-theme .logo-img {
    filter: none;
}

/* Page Header Light Theme */
.page-header.header-light-theme {
    background: transparent !important;
    background-image: none !important;
    padding-top: 160px;
}

.page-header.header-light-theme h1 {
    color: #1a1a1a !important;
    text-shadow: none;
}

.page-header.header-light-theme p {
    color: #4a4a4a !important;
    text-shadow: none;
}