/* ==================================
   PREMIUM VARIABLES & RESET
================================== */
:root {
    --bg-base: #030305;
    --bg-surface: rgba(20, 20, 25, 0.4);
    --bg-glass: rgba(255, 255, 255, 0.03);
    
    --gold-primary: #facc15;
    --gold-dark: #ca8a04;
    --gold-light: #fef08a;
    --gold-gradient: linear-gradient(135deg, #fef08a, #facc15, #ca8a04);
    
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-strong: rgba(250, 204, 21, 0.2);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-gold: 0 10px 40px -10px rgba(250, 204, 21, 0.2);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    max-width: 100vw;
    overflow-x: hidden !important;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    max-width: 100vw;
    overflow-x: hidden !important;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Noise Texture */
.ambient-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Ambient Glow Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    animation: floatGlow 15s infinite ease-in-out alternate;
}

.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(20, 20, 25, 0.8) 0%, rgba(3, 3, 5, 1) 100%);
    overflow: hidden;
}


.glow-1 {
    top: -10%;
    right: -5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(202, 138, 4, 0.15) 0%, rgba(0,0,0,0) 70%);
}

.glow-2 {
    bottom: 20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, rgba(0,0,0,0) 70%);
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 50px) scale(1.1); }
}

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

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.section-padding {
    padding: 120px 0;
}

.sub-heading {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 10px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Reusable Glass Card */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    transition: var(--transition-bounce);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-strong);
    box-shadow: var(--shadow-gold), 0 15px 40px rgba(0,0,0,0.5);
}

/* ==================================
   PREMIUM HEADER
================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(3, 3, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glassStrong);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.6rem;
    margin: 0;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 6px;
    color: var(--gold-primary);
    text-transform: uppercase;
}

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

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
}

.nav-links li a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links li a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gold-gradient);
    color: var(--bg-base) !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-gold);
}

.nav-cta i { transition: transform 0.3s ease; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.4);
}

.nav-cta:hover i {
    transform: translateX(4px);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(3, 3, 5, 0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border-glass);
    padding: 40px 30px;
    transition: var(--transition-bounce);
    z-index: 1001;
    display: flex;
    flex-direction: column;
}

.mobile-nav.open {
    right: 0;
    box-shadow: -20px 0 50px rgba(0,0,0,0.8);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 20px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-links li a {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ==================================
   HERO SECTION
================================== */
.hero {
    position: relative;
    padding: 100px 0 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 10;
    padding-bottom: 80px;
}

.slider-track {
    display: flex;
    width: 200%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
}

.slide-item {
    width: 50%;
    flex-shrink: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
    display: flex;
    align-items: center;
}



.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: none !important;
    gap: 15px;
    z-index: 20;
}

.slide-btn {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slide-btn.active {
    background: var(--gold-primary);
    transform: scale(1.4);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 30px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    position: relative;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-base);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-glow {
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: var(--transition-smooth);
    z-index: 1;
}

.btn-primary:hover .btn-glow { left: 100%; transition: left 0.6s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(250, 204, 21, 0.5); }

.btn-secondary {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    color: var(--text-main);
    border: 1px solid var(--border-glass-strong);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold-primary);
}

/* Trusted By */
.trusted-by {
    display: flex;
    align-items: center;
    gap: 20px;
}

.users-avatars {
    display: flex;
    align-items: center;
}

.users-avatars img, .avatar-more {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid var(--bg-base);
    margin-left: -15px;
}

.users-avatars img:first-child { margin-left: 0; }

.avatar-more {
    background: var(--gold-gradient);
    color: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 10;
}

.trusted-by p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Hero Visual Graphic Layered */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.glass-shield {
    position: relative;
    width: clamp(280px, 40vw, 450px);
    height: clamp(280px, 40vw, 450px);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 50px rgba(250, 204, 21, 0.05), var(--shadow-glass);
    transition: var(--transition-bounce);
}

.glass-shield:hover {
    transform: scale(1.02);
}

.majestic-icon {
    font-size: 180px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 20px 30px rgba(202, 138, 4, 0.3));
    z-index: 2;
}

.pulse-rings {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 75%; height: 75%;
}

.ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    animation: ripple 6s infinite linear both;
}

.r1 { animation-delay: 0s; }
.r2 { animation-delay: 3s; }

@keyframes ripple {
    0% { width: 40%; height: 40%; opacity: 0.6; }
    100% { width: 115%; height: 115%; opacity: 0; }
}

/* ==================================
   PREMIUM STATS
================================== */
.stats {
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 35px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(20,20,25,0.8) 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-left: 1px solid rgba(255,255,255,0.05);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-primary);
    box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-main);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==================================
   TESTIMONIALS & FEATURES
================================== */
.section-desc {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 50px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    padding: 40px 30px;
    text-align: center;
}

.feature-icon {
    width: 70px; height: 70px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--gold-primary);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.1);
}

.feature-card h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 15px; color: var(--text-main); font-weight: 600; }
.feature-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* ==================================
   SERVICES SECTION
================================== */
.services-content {
    display: flex;
    align-items: center;
    gap: 70px;
}

.services-text { flex: 1.1; }
.services-visual { flex: 0.9; }

.services-list { list-style: none; padding: 0; }
.services-list li {
    margin-bottom: 25px;
    font-size: 1.05rem;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: var(--text-muted);
}
.services-list li i {
    margin-top: 6px;
    font-size: 1.2rem;
}
.services-list li strong {
    color: var(--text-main);
}

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

.testimonial-card {
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 80px;
    background: linear-gradient(180deg, rgba(250, 204, 21, 0.1), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    z-index: 0;
}

.stars {
    color: var(--gold-primary);
    font-size: 1rem;
    margin-bottom: 25px;
    gap: 5px;
    display: flex;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-main);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 40px;
    flex: 1;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid var(--border-glass);
    padding-top: 25px;
    z-index: 1;
}

.client-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-dark);
}

.client-details .name {
    font-size: 1.15rem;
    font-weight: 600;
}

.client-details .title {
    font-size: 0.85rem;
    color: var(--gold-primary);
}

/* ==================================
   FOOTER
================================== */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    padding: 100px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 60px;
}

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

.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 350px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-main);
}

.footer-links ul li, .footer-contact ul li {
    margin-bottom: 15px;
}

.footer-links ul li a i, .footer-contact ul li a i {
    color: var(--gold-primary);
    margin-right: 10px;
    font-size: 0.9em;
}

.footer-links ul li a, .footer-contact ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover, .hover-gold:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

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

/* --- Brand Social Icons --- */
.brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.brand-icon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    z-index: 0;
    transition: var(--transition-smooth);
}

.brand-icon i {
    z-index: 1;
    transition: var(--transition-bounce);
}

.icon-twitter i { color: #ffffff; }
.icon-twitter:hover::before { background: #000000; border-color: #333333; }
.icon-twitter:hover i { color: #ffffff; transform: scale(1.2); }

.icon-tiktok i { color: #ffffff; text-shadow: 2px 0 0 #fe2c55, -2px 0 0 #25f4ee; }
.icon-tiktok:hover::before { background: #000000; border-color: #fe2c55; }
.icon-tiktok:hover i { text-shadow: 3px 0 0 #fe2c55, -3px 0 0 #25f4ee; transform: scale(1.2); }

.brand-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 25px 0;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.scroll-to-top {
    width: 45px;
    height: 45px;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
}

.scroll-to-top:hover {
    background: var(--gold-primary);
    color: var(--bg-base);
}

/* ==================================
   ABOUT PAGE (HAKKIMIZDA)
================================== */
.about-hero {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 80px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-image-wrapper .glass-shield {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 0 auto;
}

.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-main);
    font-weight: 800;
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-glass);
}

.about-stat-item h3 {
    font-size: 2.2rem;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.about-stat-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.mv-card {
    padding: 40px;
    height: 100%;
}

.mv-card .icon {
    width: 65px; height: 65px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--gold-primary);
    border-radius: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.1);
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.mv-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==================================
   CONTACT PAGE (İLETİŞİM)
================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-card {
    padding: 50px 40px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-glass);
}
.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 65px; height: 65px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--gold-primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: inset 0 0 20px rgba(250, 204, 21, 0.1);
}

.contact-details h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 600;
}
.contact-details p, .contact-details a {
    color: var(--text-muted);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}
.contact-details a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 40px;
}

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

.form-group label {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
    margin-left: 5px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 160px;
}

.submit-btn {
    margin-top: 15px;
    cursor: pointer;
    font-family: var(--font-body);
    width: 100%;
}

/* ==================================
   FLOATING WHATSAPP
================================== */
.floating-wa {
    position: fixed;
    bottom: 40px;
    left: 40px;
    background: #25D366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition-bounce);
    border: 2px solid rgba(255,255,255,0.2);
}

.floating-wa i { font-size: 1.6rem; }

.floating-wa:hover {
    background: #1EBE5D;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

/* ==================================
   REVEAL ANIMATIONS (Triggered via JS)
================================== */
.reveal-up { opacity: 0; transform: translateY(40px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

.reveal-down { opacity: 0; transform: translateY(-40px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-down.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(40px); transition: 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ==================================
   RESPONSIVE DESIGN (MOBILE PERFECTED)
================================== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.8rem; }
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { min-height: auto; align-items: flex-start; padding-top: 130px; }
    .hero-slider { padding-bottom: 60px; }
    .hero-content { flex-direction: column-reverse; align-items: center; gap: 40px; }
    .slide-item { display: block; }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; flex-direction: column; width: 100%; max-width: 400px; margin: 0 auto 30px; }
    .hero-buttons .btn { width: 100%; }
    .trusted-by { justify-content: center; margin-top: 20px; }
    .hero-visual { width: 100%; display: flex; justify-content: center; }
    .glass-shield { width: 320px; height: 320px; margin: 0 auto; }
    .majestic-icon { width: 160px !important; }
    .slider-controls { bottom: 10px; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { flex-direction: column; text-align: center; gap: 15px; padding: 25px; justify-content: center; }
    
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-content { flex-direction: column-reverse; gap: 40px; }
    .services-text { text-align: center; }
    .services-text .section-title { text-align: center !important; }
    .services-list li { text-align: left; }
    
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    
    .contact-grid { grid-template-columns: 1fr; }
    
    .about-hero { flex-direction: column; text-align: center; }
    .about-stats { grid-template-columns: 1fr; gap: 30px; }
    .mission-vision { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; line-height: 1.2; margin-bottom: 20px; }
    .hero-subtitle { font-size: 1rem; }
    
    .glass-shield { width: 250px; height: 250px; }
    .majestic-icon { width: 150px !important; }
    
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    
    .footer-links ul li, .footer-contact ul li { display: flex; justify-content: center; align-items: center; }
    
    .social-icons { 
        justify-content: center; 
        gap: 15px; 
        flex-wrap: nowrap; 
        margin-top: 10px;
    }
    
    .bottom-flex { flex-direction: column; gap: 20px; }
    
    .floating-wa {
        bottom: 20px; right: 20px; left: auto;
        padding: 12px; border-radius: 50%;
        width: 55px; height: 55px; justify-content: center;
    }
    .floating-wa span { display: none; }
    .floating-wa i { font-size: 2rem; margin: 0; padding: 0; }
}
