/* ================================================
   ÜLKA GRUP - Geliştirici: Mert SUNAR 
   ================================================ */

/* CSS Variables */
:root {
    /* Logo Colors */
    --gold-light: #e8d5a3;
    --gold: #c9a962;
    --gold-dark: #9a7b3c;
    --gold-gradient: linear-gradient(135deg, #e8d5a3 0%, #c9a962 50%, #9a7b3c 100%);

    /* Dark Theme */
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #111111;
    --bg-dark-tertiary: #1a1a1a;
    --bg-card: #141414;

    /* Text Colors */
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --text-gold: #c9a962;

    /* Shadows & Effects */
    --shadow-gold: 0 0 30px rgba(201, 169, 98, 0.2);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);

    /* Spacing */
    --section-padding: 60px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled::before {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(201, 169, 98, 0.2));
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-left: 1px solid rgba(201, 169, 98, 0.3);
    padding-left: 15px;
    transition: all 0.4s ease;
}

.navbar.scrolled .nav-logo img {
    height: 36px;
}

.navbar.scrolled .logo-text {
    font-size: 12px;
}

.nav-menu {
    display: flex;
    gap: 6px;
    list-style: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 50px;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scale(1);
}

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

.nav-link-cta {
    background: var(--gold-gradient);
    color: var(--bg-dark) !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(201, 169, 98, 0.3);
}

.nav-link-cta::before,
.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 169, 98, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px 0 5px !important;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(201, 169, 98, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(154, 123, 60, 0.08) 0%, transparent 50%),
        var(--bg-dark);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 5s infinite ease-in-out;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0 10px;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.hero-logo {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(201, 169, 98, 0.3));
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title-line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 12px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-description {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 1s ease 0.5s both;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--gold);
}

.scroll-arrow {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gold);
    border-radius: 12px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 1.5s infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        top: 8px;
    }

    50% {
        top: 16px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-dark);
}

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

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================================
   SECTION STYLES
   ================================================ */
section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 50px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ================================================
   ABOUT SECTION
   ================================================ */
.about {
    background: var(--bg-dark-secondary);
}

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

.about-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.about-text {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--gold);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 98, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.about-visual {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.about-visual.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.visual-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.visual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold);
}

.visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.visual-card p {
    color: var(--text-muted);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(145deg, var(--bg-card), rgba(201, 169, 98, 0.05));
    border-color: rgba(201, 169, 98, 0.3);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ================================================
   WHY US SECTION
   ================================================ */
.why-us {
    background: var(--bg-dark-secondary);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(201, 169, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

.why-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    border-color: rgba(201, 169, 98, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.4s ease;
}

.why-icon svg {
    width: 24px;
    height: 24px;
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon {
    background: var(--gold);
    color: var(--bg-dark);
}

.why-card:hover .why-icon svg {
    transform: rotate(10deg) scale(1.1);
}

.why-number-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    letter-spacing: 1px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.why-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact {
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    transition: all var(--transition-fast);
    opacity: 0;
    transform: translateX(-30px);
}

.contact-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.contact-card:hover {
    border-color: rgba(201, 169, 98, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 98, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.contact-details h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.map-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    height: 450px;
    box-shadow: var(--shadow-card);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--bg-dark-secondary);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-logo {
    height: 60px;
}

.footer-tagline {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 40px;
    }

    .nav-logo {
        gap: 10px;
    }

    .nav-logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 10px;
        padding-left: 10px;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    /* Mobile Navigation - Modern Glassmorphism Design */
    .nav-toggle {
        display: flex;
        z-index: 1002;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: rgba(201, 169, 98, 0.1);
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-toggle:hover {
        background: rgba(201, 169, 98, 0.2);
    }

    .nav-toggle.active {
        background: rgba(201, 169, 98, 0.15);
    }

    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: var(--gold);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        border-left: none;
        padding: 0;
    }

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
            radial-gradient(ellipse at 30% 20%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 80%, rgba(154, 123, 60, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        overflow: hidden;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 20px 40px;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 1px;
        color: var(--text-light);
        border-bottom: none;
        position: relative;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active .nav-link {
        transform: translateY(0);
        opacity: 1;
    }

    /* Staggered animation for menu items */
    .nav-menu.active li:nth-child(1) .nav-link {
        transition-delay: 0.1s;
    }

    .nav-menu.active li:nth-child(2) .nav-link {
        transition-delay: 0.15s;
    }

    .nav-menu.active li:nth-child(3) .nav-link {
        transition-delay: 0.2s;
    }

    .nav-menu.active li:nth-child(4) .nav-link {
        transition-delay: 0.25s;
    }

    .nav-menu.active li:nth-child(5) .nav-link {
        transition-delay: 0.3s;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 15px;
        width: 0;
        height: 2px;
        background: var(--gold-gradient);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::before,
    .nav-link:focus::before {
        width: 60px;
    }

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

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

    .nav-link-cta {
        margin-top: 30px;
        padding: 18px 50px;
        font-size: 1rem;
        background: var(--gold-gradient);
        color: var(--bg-dark) !important;
        border-radius: 50px;
        display: inline-block;
    }

    .nav-link-cta::before {
        display: none;
    }

    .nav-link-cta:hover {
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(201, 169, 98, 0.4);
    }

    /* Hero */
    .hero-logo {
        max-width: 280px;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Why Us */
    .why-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
        /* Hide tagline on very small screens for cleaner look */
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .contact-form-wrapper {
        padding: 24px;
    }
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.fab svg {
    width: 28px;
    height: 28px;
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
}

.fab-phone {
    background: var(--gold-gradient);
    color: var(--bg-dark);
}

.fab-whatsapp {
    background: #25d366;
}

.fab-pulse {
    position: absolute;
    inset: -5px;
    background: #25d366;
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
    animation: fab-pulse 2s infinite;
}

@keyframes fab-pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .fab {
        width: 48px;
        height: 48px;
    }

    .fab svg {
        width: 24px;
        height: 24px;
    }
}