/* ===== CSS Variables ===== */
:root {
    /* Altın Tonları */
    --gold: #C9A227;
    --gold-dark: #A68523;
    --gold-light: #E8D48B;
    --gold-pale: #F5E6C8;
    /* Siyah Tonları */
    --black: #0A0A0A;
    --black-soft: #1A1A1A;
    --black-light: #2D2D2D;
    /* İnci Beyazı Tonları */
    --pearl: #F8F6F3;
    --pearl-dark: #EDE9E3;
    --pearl-light: #FDFCFB;
    --cream: #FAF8F5;
    --white: #FFFFFF;
    /* Nötr Tonlar */
    --gray: #6B6B6B;
    --gray-light: #9A9A9A;
    --gray-dark: #4A4A4A;
    /* Eski değişkenler (uyumluluk için) */
    --primary: var(--gold);
    --primary-dark: var(--gold-dark);
    --primary-light: var(--gold-light);
    --secondary: var(--black);
    --secondary-dark: var(--black);
    --accent: var(--gold);
    --dark: var(--pearl);
    --dark-light: var(--pearl-dark);
    --success: #2E7D5A;
    /* Gradyanlar */
    --gradient-gold: linear-gradient(135deg, #C9A227 0%, #E8D48B 50%, #C9A227 100%);
    --gradient-gold-dark: linear-gradient(135deg, #A68523 0%, #C9A227 100%);
    --gradient-black: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
    --gradient-pearl: linear-gradient(135deg, #FDFCFB 0%, #F8F6F3 100%);
    /* Gölgeler */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 4px 20px rgba(201, 162, 39, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--pearl);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

/* Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
    border-color: var(--gold-light);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.3), 0 8px 30px rgba(201, 162, 39, 0.5);
    border-color: var(--gold-light);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

.btn-full {
    width: 100%;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .logo-text {
    color: var(--black);
}

.navbar.scrolled .logo-text .highlight {
    color: var(--gold);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--black);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
}

.logo-icon {
    font-size: 2rem;
}

.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.navbar.scrolled .logo-img {
    width: 40px;
    height: 40px;
}

/* Hero Watermark Logo */
.hero-watermark {
    position: absolute;
    right: -5%;
    bottom: 10%;
    width: 500px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    animation: floatLogo 6s ease-in-out infinite;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

/* Section Watermark Logo */
.section-watermark {
    position: absolute;
    width: 350px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.section-watermark-right {
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(10deg);
}

.section-watermark-left {
    left: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
}

/* Footer Logo */
.footer-logo-link {
    display: block;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 280px;
    max-width: 100%;
    height: auto;
    transition: var(--transition);
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.logo-text .highlight {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:active {
    transform: scale(0.95);
}

.nav-links a:focus {
    outline: none;
    color: var(--gold);
}

.nav-links a.active {
    color: var(--gold);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 100px 20px;
    color: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(201, 162, 39, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(201, 162, 39, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(201, 162, 39, 0.05) 0px, rgba(201, 162, 39, 0.05) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(201, 162, 39, 0.05) 0px, rgba(201, 162, 39, 0.05) 1px, transparent 1px, transparent 80px);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-title .line1,
.hero-title .line2,
.hero-title .line3 {
    display: block;
    font-size: clamp(3rem, 12vw, 8rem);
    line-height: 0.95;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title .line1 {
    color: var(--gold-light);
    font-size: clamp(1.5rem, 5vw, 3rem);
    letter-spacing: 0.3em;
    animation-delay: 0.2s;
}

.hero-title .line2 {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-delay: 0.4s;
    text-shadow: none;
}

.hero-title .line3 {
    animation-delay: 0.6s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1.2s forwards;
    opacity: 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

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

/* ===== Section Styles ===== */
section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold-dark);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
    color: var(--black);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
    background: var(--pearl);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid var(--pearl-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 30px rgba(201, 162, 39, 0.1);
}

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


.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--black);
}

.service-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.service-link {
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition);
}

.service-link::before {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    top: -3px;
    bottom: -3px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 6px;
    opacity: 0;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--gold);
    gap: 10px;
}

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

.service-link:active {
    transform: scale(0.95);
}

.service-link:focus {
    outline: none;
    color: var(--gold);
}

.service-link:focus::before {
    opacity: 1;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.3);
}

/* ===== About Section ===== */
.about {
    background: var(--black);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about .section-title {
    color: var(--white);
}

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

.about-text .section-tag,
.about-text .section-title {
    text-align: left;
}

.about-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    color: var(--black);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.about-image {
    position: relative;
}

.image-box {
    border-radius: 20px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 3px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 0 60px rgba(201, 162, 39, 0.15);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--gradient-gold);
    padding: 25px 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    color: var(--black);
}

.exp-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== Team Section ===== */
.team {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.team::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.team .section-title {
    color: var(--white);
}

.team .section-desc {
    color: var(--gray-light);
}

.team-content {
    position: relative;
    z-index: 1;
}

.team-main {
    margin-bottom: 60px;
}

.team-lead {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    background: var(--black-soft);
    padding: 50px;
    border-radius: 24px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    position: relative;
    overflow: hidden;
}

.team-lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
}

.team-lead-image {
    position: relative;
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gradient-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: var(--black);
    border: 3px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.3);
}

.team-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.4);
}

.team-lead-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.team-role {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.team-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

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

.team-stat-number {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 5px;
}

.team-stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
}

.team-description {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 25px;
}

.team-highlights {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.team-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.team-highlight i {
    color: var(--gold);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.team-member {
    background: var(--black-soft);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(201, 162, 39, 0.1);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

.team-member-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.team-member:hover .team-member-icon {
    transform: scale(1.1) rotate(5deg);
}

.team-member h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.team-member p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.team-cta {
    background: var(--black-soft);
    border-radius: 24px;
    padding: 50px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    text-align: center;
}

.team-cta-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.team-cta-content p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.team-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.team-cta-buttons .btn {
    min-width: 200px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    background: var(--pearl-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid var(--pearl-dark);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--gray-dark);
    font-style: italic;
    line-height: 1.8;
}

.testimonial-content p::before {
    content: '"';
    font-size: 2.5rem;
    color: var(--gold);
    font-family: Georgia, serif;
    line-height: 0;
    vertical-align: bottom;
    margin-right: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 3px;
    color: var(--black);
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 500;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--pearl);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: var(--black);
}

.contact-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    border: 1px solid var(--pearl-dark);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.contact-info .section-tag,
.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.contact-details {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.contact-text h4 {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
    color: var(--black);
}

.contact-text a,
.contact-text p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-text a {
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.contact-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.contact-text a:hover::after {
    width: 100%;
}

.contact-text a:active {
    transform: scale(0.95);
}

.contact-text a:focus {
    outline: none;
    color: var(--gold);
}

.contact-text a:focus::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    padding: 12px 20px;
    background: var(--pearl-dark);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--pearl-dark);
    transition: var(--transition);
    color: var(--black);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link:active::before {
    width: 200px;
    height: 200px;
}

.social-link i {
    font-size: 1.2rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.social-link:active {
    transform: translateY(-1px) scale(0.95);
}

.social-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

/* Facebook */
.social-link:nth-child(1):hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

/* Instagram */
.social-link:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
    color: white;
}

/* WhatsApp */
.social-link:nth-child(3):hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.contact-form-wrapper {
    background: var(--black);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--black-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    transform: translateY(-1px);
}

.form-group input:active,
.form-group select:active,
.form-group textarea:active {
    transform: translateY(0);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Notification */
.form-notification {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.form-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.form-notification.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
}

.form-notification i {
    font-size: 1.2rem;
}

/* ===== Footer ===== */
.footer {
    background: var(--black);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer-links h4,
.footer-services h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
}

.footer-links ul,
.footer-services ul {
    display: grid;
    gap: 12px;
}

.footer-links a,
.footer-services li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links a {
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    position: relative;
    display: inline-block;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:active {
    transform: scale(0.95);
}

.footer-links a:focus {
    outline: none;
    color: var(--gold);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    border: 2px solid transparent;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.whatsapp-btn:active::before {
    width: 300px;
    height: 300px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.whatsapp-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.4), 0 6px 30px rgba(37, 211, 102, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .contact-wrapper {
        padding: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil - Büyük */
@media (max-width: 768px) {
    /* Genel */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Navbar */
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        border-top: 1px solid var(--pearl-dark);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links a {
        color: var(--black) !important;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        padding: 15px 0;
        border-bottom: 1px solid var(--pearl-dark);
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-icon {
        font-size: 1.6rem;
    }
    
    .logo-img {
        width: 38px;
        height: 38px;
    }
    
    .hero-watermark {
        width: 250px;
        right: -10%;
        bottom: 5%;
        opacity: 0.05;
    }
    
    .section-watermark {
        width: 200px;
        opacity: 0.04;
    }
    
    .footer-logo-img {
        width: 220px;
    }
    
    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .hero-title .line1 {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .hero-title .line2,
    .hero-title .line3 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .btn {
        width: 100%;
        padding: 16px 24px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active {
        transform: scale(0.97);
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-desc {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .service-image {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .service-content h3 {
        font-size: 1.2rem;
    }
    
    .service-content p {
        font-size: 0.9rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Team */
    .team-lead {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
        text-align: center;
    }

    .team-lead-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .team-image-wrapper {
        font-size: 4rem;
    }

    .team-lead-info h3 {
        font-size: 2rem;
    }

    .team-stats {
        justify-content: center;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .team-cta {
        padding: 30px 20px;
    }

    .team-cta-content h3 {
        font-size: 1.8rem;
    }

    .team-cta-buttons {
        flex-direction: column;
    }

    .team-cta-buttons .btn {
        width: 100%;
    }
    
    .about-image {
        order: -1;
    }
    
    .image-box {
        aspect-ratio: 16/10;
        max-height: 250px;
    }
    
    .experience-badge {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        display: inline-block;
        margin-top: -30px;
        margin-left: 20px;
    }
    
    .about-text .section-tag,
    .about-text .section-title {
        text-align: center;
    }
    
    .about-desc {
        text-align: center;
        font-size: 1rem;
    }
    
    .about-features {
        gap: 20px;
    }
    
    .feature {
        gap: 15px;
    }
    
    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.9rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }
    
    .contact-info .section-tag,
    .contact-info .section-title {
        text-align: center;
    }
    
    .contact-desc {
        text-align: center;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 10px;
    }
    
    .social-link {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* iOS zoom engelleme */
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-links ul,
    .footer-services ul {
        gap: 10px;
    }
    
    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 18px;
        border-radius: 50px;
    }
    
    .whatsapp-btn i {
        font-size: 1.3rem;
    }
    
    .whatsapp-text {
        display: none;
    }
}

/* Mobil - Küçük */
@media (max-width: 480px) {
    .hero-title .line2,
    .hero-title .line3 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 15px;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .image-box {
        max-height: 200px;
    }
    
    .experience-badge {
        padding: 20px 25px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .contact-wrapper {
        padding: 20px;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
    
    .social-link {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .social-link i {
        font-size: 1rem;
    }

    /* Team Mobile */
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-lead-info h3 {
        font-size: 1.7rem;
    }

    .team-stats {
        flex-direction: column;
        gap: 20px;
    }

    .team-highlights {
        justify-content: center;
    }
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(201, 162, 39, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(201, 162, 39, 0.5);
}

/* ===== Trust Badges ===== */
.trust-badges {
    background: var(--pearl-dark);
    padding: 60px 0;
}

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

.badge-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.badge-item:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.badge-item h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 8px;
}

.badge-item p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Gallery ===== */
.gallery {
    background: var(--pearl);
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid var(--pearl-dark);
    border-radius: 50px;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.filter-btn:active::before {
    width: 200px;
    height: 200px;
}

.filter-btn:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2), 0 4px 15px rgba(201, 162, 39, 0.3);
    transform: translateY(-2px);
}

.filter-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.filter-btn:active {
    transform: translateY(0) scale(0.95);
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--gold-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gallery-view-btn {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.gallery-view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.gallery-view-btn:active::before {
    width: 100px;
    height: 100px;
}

.gallery-view-btn:hover {
    transform: scale(1.1);
    background: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.gallery-view-btn:active {
    transform: scale(0.95);
}

.gallery-view-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.4);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.lightbox-close:active::before {
    width: 100px;
    height: 100px;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.lightbox-close:active {
    transform: rotate(90deg) scale(0.9);
}

.lightbox-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.4);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(201, 162, 39, 0.3);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev,
.lightbox-next {
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.lightbox-prev::before,
.lightbox-next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.lightbox-prev:active::before,
.lightbox-next:active::before {
    width: 150px;
    height: 150px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.9);
}

.lightbox-prev:focus,
.lightbox-next:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.4);
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    background: rgba(0, 0, 0, 0.7);
    padding: 20px 40px;
    border-radius: 12px;
}

.lightbox-info h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.lightbox-info p {
    color: var(--gold-light);
}

/* ===== FAQ ===== */
.faq {
    background: var(--pearl);
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--pearl-dark);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: var(--gold);
    transition: height 0.3s ease;
}

.faq-item.active .faq-question::before {
    height: 100%;
}

.faq-question:hover {
    background: rgba(201, 162, 39, 0.05);
    padding-left: 35px;
}

.faq-question:active {
    transform: scale(0.98);
}

.faq-question:focus {
    outline: none;
    background: rgba(201, 162, 39, 0.1);
}

.faq-item.active .faq-question {
    background: rgba(201, 162, 39, 0.08);
    border-left: 4px solid var(--gold);
}

.faq-question h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    margin: 0;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    line-height: 1.8;
}

/* ===== Quick Contact Widget ===== */
.quick-contact-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.quick-contact-toggle {
    width: 65px;
    height: 65px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-contact-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(201, 162, 39, 0.5);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.quick-contact-panel {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.quick-contact-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.quick-contact-header {
    padding: 20px;
    background: var(--gradient-gold);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-contact-header h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    color: var(--black);
    margin: 0;
}

.quick-contact-close {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition);
}

.quick-contact-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.quick-contact-tabs {
    display: flex;
    border-bottom: 1px solid var(--pearl-dark);
}

.quick-tab {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.quick-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(201, 162, 39, 0.1);
    opacity: 0;
    transition: var(--transition);
}

.quick-tab:active::before {
    opacity: 1;
}

.quick-tab:hover,
.quick-tab.active {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.quick-tab.active {
    background: rgba(201, 162, 39, 0.05);
    box-shadow: 0 -2px 10px rgba(201, 162, 39, 0.1);
}

.quick-tab:focus {
    outline: none;
    color: var(--gold);
}

.quick-tab:active {
    transform: scale(0.95);
}

.quick-contact-content {
    padding: 20px;
    min-height: 200px;
}

.quick-tab-content {
    display: none;
}

.quick-tab-content.active {
    display: block;
}

.quick-phone-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.quick-phone-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--pearl-dark);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.quick-phone-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.quick-phone-btn:active::before {
    width: 200px;
    height: 200px;
}

.quick-phone-btn:hover {
    background: var(--gold-pale);
    transform: translateX(5px);
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.3);
}

.quick-phone-btn:active {
    transform: translateX(2px) scale(0.98);
}

.quick-phone-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3);
}

.quick-phone-btn i {
    width: 45px;
    height: 45px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
}

.quick-phone-btn strong {
    display: block;
    color: var(--black);
    font-size: 1.1rem;
}

.quick-phone-btn span {
    color: var(--gray);
    font-size: 0.85rem;
}

.quick-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #25D366;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.quick-whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.quick-whatsapp-btn:active::before {
    width: 300px;
    height: 300px;
}

.quick-whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.3);
}

.quick-whatsapp-btn:active {
    transform: scale(0.98);
}

.quick-whatsapp-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.4);
}

.quick-whatsapp-btn i {
    font-size: 2rem;
}

.quick-whatsapp-btn strong {
    display: block;
    font-size: 1.1rem;
}

.quick-whatsapp-btn span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.quick-info {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin: 0;
}

.quick-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-form input,
.quick-form select {
    padding: 12px 15px;
    border: 2px solid var(--pearl-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.quick-form input:focus,
.quick-form select:focus {
    outline: none;
    border-color: var(--gold);
}

.quick-submit-btn {
    padding: 14px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 10px;
    color: var(--black);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.quick-submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.quick-submit-btn:active::before {
    width: 300px;
    height: 300px;
}

.quick-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.3);
    border: 2px solid var(--gold-light);
}

.quick-submit-btn:active {
    transform: translateY(0) scale(0.98);
}

.quick-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.3), 0 5px 15px rgba(201, 162, 39, 0.3);
}

/* ===== Exit Intent Popup ===== */
.exit-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.exit-popup.active {
    display: flex;
}

.exit-popup-content {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    position: relative;
    border: 3px solid var(--gold);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: popup-enter 0.4s ease;
}

@keyframes popup-enter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--pearl-dark);
    border: none;
    border-radius: 50%;
    color: var(--gray);
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

.exit-popup-close::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.exit-popup-close:active::before {
    width: 100px;
    height: 100px;
}

.exit-popup-close:hover {
    background: var(--danger);
    color: var(--white);
    transform: scale(1.1);
}

.exit-popup-close:active {
    transform: scale(0.9);
}

.exit-popup-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.exit-popup-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.exit-popup-content > p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.exit-popup-form input {
    padding: 14px 18px;
    border: 2px solid var(--pearl-dark);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.exit-popup-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    transform: translateY(-1px);
}

.exit-popup-form input:active {
    transform: translateY(0);
}

.exit-popup-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    margin: 0;
}

/* ===== Responsive Updates ===== */
@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .badge-item {
        padding: 20px 15px;
    }

    .badge-icon {
        font-size: 2.5rem;
    }

    .badge-item h4 {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h4 {
        font-size: 1.1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .quick-contact-panel {
        width: calc(100vw - 40px);
        right: 20px;
    }

    .exit-popup-content {
        padding: 30px 20px;
    }

    .exit-popup-content h3 {
        font-size: 1.5rem;
    }

    .exit-popup-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .badges-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-widget {
        bottom: 80px;
        right: 15px;
    }

    .quick-contact-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    /* Mobile Touch Improvements */
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    button, a, .clickable {
        -webkit-tap-highlight-color: rgba(201, 162, 39, 0.2);
        touch-action: manipulation;
    }
    
    /* Larger touch targets on mobile */
    @media (max-width: 768px) {
        .btn {
            min-height: 48px;
        }
        
        .nav-links a {
            min-height: 44px;
            display: flex;
            align-items: center;
        }
        
        .filter-btn {
            min-height: 44px;
            padding: 12px 20px;
        }
        
        .faq-question {
            min-height: 60px;
        }
        
        .quick-tab {
            min-height: 50px;
        }
    }
}

