/*
 * EslemPRO - Premium Frontend Stylesheet
 * Color Palette: Dark Purple, Deep Indigo, Vivid Teal/Emerald
 */

:root {
    /* Color Palette */
    --bg-dark: #070313;
    --bg-surface: rgba(18, 11, 38, 0.7);
    --bg-surface-solid: #120b26;
    --primary: #8a2be2;
    --primary-light: #ab60f6;
    --primary-dark: #630fa7;
    --accent: #00f5d4;
    --accent-rgb: 0, 245, 212;
    --accent-emerald: #00e676;
    --text-main: #f3effa;
    --text-muted: #9f96b5;
    --border-color: rgba(138, 43, 226, 0.2);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* 1. RESET & BASE */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(0, 245, 212, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

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

/* 2. TYPOGRAPHY & GRADIENTS */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 20%, var(--primary-light) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-purple {
    color: var(--primary-light) !important;
}

.text-vip {
    color: #ffd700 !important;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

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

/* 3. BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #6f1bb5 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 4px 22px rgba(138, 43, 226, 0.6);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #0b0718;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 22px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 245, 212, 0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* 4. HEADER NAVIGATION */
.site-header {
    background: rgba(7, 3, 19, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
}

.site-logo .logo-bold {
    color: #fff;
}

.site-logo .logo-accent {
    color: var(--accent);
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.5);
}

.brand-logo-img {
    max-height: 45px;
    object-fit: contain;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav ul li a {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.site-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
}

.site-nav ul li a:hover,
.site-nav ul li a.active {
    color: #fff;
}

.site-nav ul li a:hover::after,
.site-nav ul li a.active::after {
    width: 100%;
}

.site-nav ul li a.vip-nav-link:hover,
.site-nav ul li a.vip-nav-link.active {
    color: #ffd700;
}

.site-nav ul li a.vip-nav-link::after {
    background: #ffd700;
}

.btn-nav-cta {
    padding: 12px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #6f1bb5 100%);
    color: #fff !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.btn-nav-cta::after {
    display: none !important;
}

.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* 5. SUBPAGE HERO */
.subpage-hero {
    background: linear-gradient(135deg, #10062a 0%, #06020e 100%);
    border-bottom: 1px solid rgba(138, 43, 226, 0.15);
    padding: 60px 20px;
    text-align: center;
}

.subpage-hero-container h1 {
    font-size: 38px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* 6. FRONTEND HOME - HERO SECTION */
.hero-section {
    padding: 80px 20px;
    position: relative;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(138, 43, 226, 0.15);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
}

.hero-lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Glassmorphism float visuals */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.3) 0%, transparent 70%);
    z-index: 1;
    filter: blur(20px);
}

.floating-glass-card {
    background: rgba(22, 16, 44, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

.floating-glass-card .card-icon {
    font-size: 24px;
    color: var(--accent);
}

.floating-glass-card h4 {
    margin-bottom: 2px;
    font-size: 16px;
}

.floating-glass-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.card-1 { top: 15%; left: 0%; animation-delay: 0s; }
.card-2 { top: 50%; right: 0%; animation-delay: 1.5s; }
.card-3 { bottom: 10%; left: 15%; animation-delay: 3s; border-color: rgba(255, 215, 0, 0.2); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* 7. SERVICES GRID CARD STYLING */
.home-services, .home-blog, .home-references, .page-content-section {
    padding: 100px 20px;
}

.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 38px;
    margin-top: 10px;
}

.subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}

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

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

.service-card {
    background: var(--bg-surface);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 212, 0.4);
    box-shadow: 0 12px 30px rgba(0, 245, 212, 0.08);
}

.service-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.no-img-placeholder {
    height: 100%;
    background: rgba(138,43,226,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: var(--primary-light);
}

.service-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 8. VIP BANNER CTA */
.vip-cta-section {
    background: linear-gradient(135deg, #10062c 0%, #06020e 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.vip-cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
}

.vip-cta-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.vip-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffd700;
    border: 1px solid rgba(255,215,0,0.3);
    padding: 4px 12px;
    border-radius: 30px;
    background: rgba(255,215,0,0.05);
    margin-bottom: 20px;
}

.vip-cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.vip-cta-content p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 800px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.vip-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vip-feat-item {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-feat-item i {
    color: #ffd700;
}

/* 9. REFERENCES LOGO GRID */
.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 30px;
    align-items: center;
}

.reference-logo {
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.reference-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
}

.reference-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1) brightness(0.9);
    transition: filter 0.3s ease;
}

.reference-logo:hover img {
    filter: grayscale(0) brightness(1);
}

/* 10. BLOG ARTICLE CARD GRID */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* 11. FORM WRAPPERS & CARDS */
.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.form-card-wrapper {
    background: var(--bg-surface-solid);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.form-card-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 25px;
}

.form-card-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.form-card-header p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Form layouts */
.form-row {
    display: flex;
    margin: 0 -15px;
    flex-wrap: wrap;
}

.form-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.form-col-4 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
    padding: 0 15px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 8px rgba(0, 245, 212, 0.2);
    background: rgba(255,255,255,0.07);
}

/* Native select - JS ile gizlenip custom dropdown ile gosterilir */
select.form-control { color-scheme: dark; }

/* Custom Select */
.custom-select-wrapper { position: relative; width: 100%; }

.custom-select-display {
    width: 100%;
    padding: 12px 40px 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(159,150,181,0.6);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    position: relative;
}

.custom-select-display::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #9f96b5;
    transition: transform 0.25s ease;
    pointer-events: none;
}

.custom-select-display.open {
    border-color: #00f5d4;
    box-shadow: 0 0 8px rgba(0,245,212,0.2);
    background: rgba(255,255,255,0.07);
}

.custom-select-display.open::after {
    transform: translateY(-50%) rotate(180deg);
    border-top-color: #00f5d4;
}

.custom-select-list {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: #1a0f35;
    border: 1px solid rgba(138,43,226,0.4);
    border-radius: 10px;
    list-style: none;
    margin: 0; padding: 6px 0;
    z-index: 9999;
    max-height: 260px;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    scrollbar-width: thin;
    scrollbar-color: #8a2be2 #12052a;
}

.custom-select-list::-webkit-scrollbar { width: 5px; }
.custom-select-list::-webkit-scrollbar-track { background: #12052a; border-radius: 10px; }
.custom-select-list::-webkit-scrollbar-thumb { background: #8a2be2; border-radius: 10px; }

.custom-select-list.open {
    display: block;
    animation: selectOpen 0.2s ease forwards;
}

@keyframes selectOpen {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.custom-select-list li {
    padding: 10px 16px;
    color: #d4cde8;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
}

.custom-select-list li:hover { background: rgba(138,43,226,0.2); color: #f3effa; }
.custom-select-list li.selected { background: rgba(138,43,226,0.35); color: #fff; font-weight: 600; }
.custom-select-list li.placeholder { color: rgba(159,150,181,0.5); font-style: italic; font-size: 13px; }


textarea.form-control {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 15px;
}

.checkbox-group input {
    margin-top: 4px;
    accent-color: var(--primary);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.25);
    color: #a3ffeb;
}

.alert-danger {
    background: rgba(255, 51, 102, 0.1);
    border: 1px solid rgba(255, 51, 102, 0.25);
    color: #ff8093;
}

/* 12. DETAILS & SIDEBAR SPLIT LAYOUT */
.detail-layout-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
}

.service-detail-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
}

.detail-cover-image {
    border-radius: 16px;
    overflow: hidden;
    max-height: 400px;
}

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

.detail-rich-content h2, 
.detail-rich-content h3 {
    margin-top: 30px;
    margin-bottom: 12px;
}

.detail-rich-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.detail-rich-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
    list-style-type: square;
    color: var(--text-muted);
}

.detail-rich-content li {
    margin-bottom: 8px;
}

/* Sidebar items */
.card {
    background: var(--bg-surface-solid);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
}

.card-header {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.card-header h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.card-body {
    padding: 25px;
}

.card-body.no-padding {
    padding: 0;
}

.sidebar-links-list li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sidebar-links-list li:last-child {
    border-bottom: none;
}

.sidebar-links-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.sidebar-links-list a:hover,
.sidebar-links-list a.active {
    background: rgba(138,43,226,0.1);
    color: #fff;
    padding-left: 30px;
}

.sidebar-recent-posts li {
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.sidebar-recent-posts a {
    display: flex;
    gap: 15px;
    padding: 15px 25px;
    align-items: center;
}

.sr-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.sr-img i {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
}

.sr-details h5 {
    font-size: 13px;
    margin-bottom: 4px;
    line-height: 1.4;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sr-details span {
    font-size: 11px;
    color: var(--text-muted);
}

/* 13. VIP DANIŞMANLIK UNIQUE ELEMENTS */
.vip-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.vip-badge-lg {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,215,0,0.1);
    border: 2px solid #ffd700;
    color: #ffd700;
    font-size: 38px;
    box-shadow: 0 0 25px rgba(255,215,0,0.3);
    margin-bottom: 25px;
}

.vip-lead-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

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

.vip-benefit-card {
    background: linear-gradient(135deg, rgba(22, 16, 44, 0.8) 0%, rgba(12, 7, 24, 0.8) 100%);
    border: 1px solid rgba(255,215,0,0.15);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
}

.vip-benefit-card i {
    font-size: 32px;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.vip-benefit-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.vip-benefit-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 14. CONTACT SPECIFIC STYLING */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
}

.contact-info-panel h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.panel-intro-text {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    gap: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.c-card-icon {
    font-size: 22px;
    color: var(--accent);
    background: rgba(0, 245, 212, 0.08);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.c-card-details h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.c-card-details p {
    font-size: 13px;
    color: var(--text-muted);
}

/* 15. FOOTER */
.site-footer {
    background: #04020a;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 80px 20px 40px 20px;
}

.site-footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
}

.footer-logo .logo-bold {
    color: #fff;
}

.footer-logo .logo-accent {
    color: var(--accent);
}

.footer-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 25px;
    border-left: 3px solid var(--accent);
    padding-left: 10px;
}

.footer-links li {
    margin-bottom: 12px;
}

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

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-policy-links a {
    color: var(--text-muted);
}

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

.footer-policy-links .divider {
    margin: 0 10px;
    color: rgba(255,255,255,0.1);
}

/* 16. WHATSAPP FLOAT BUTTON */
.whatsapp-floater {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-floater:hover {
    transform: scale(1.1) rotate(10deg);
    color: #fff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-floater:hover .whatsapp-tooltip {
    opacity: 1;
}

/* 17. RESPONSIVENESS MEDIA QUERIES */
@media (max-width: 1120px) and (min-width: 769px) {
    .site-nav ul {
        gap: 12px;
    }
    .site-nav ul li a {
        font-size: 13px;
    }
    .btn-nav-cta {
        padding: 10px 22px;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .detail-layout-grid, .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Responsive navbar */
    .mobile-nav-toggle {
        display: block;
    }
    
    .site-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: #0b0718;
        padding: 40px 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-top: 1px solid rgba(255,255,255,0.05);
        overflow-y: auto;
    }
    
    .site-nav.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .site-nav ul li {
        width: 100%;
    }
    
    .site-nav ul li a {
        font-size: 18px;
        display: block;
    }
    
    .btn-nav-cta {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    /* Subpage adjustments */
    .subpage-hero h1 {
        font-size: 28px;
    }

    /* Hero section grid */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-lead {
        margin: 0 auto 30px auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        display: none; /* Hide floating animations on mobile for speed */
    }

    .form-card-wrapper {
        padding: 30px 20px;
    }
    
    .form-col-6, .form-col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
