/* ============================================
   SMB Grup - Kurumsal Web Sitesi
   Light & Modern Design System
   ============================================ */

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #1a2a4a;
    --accent: #c8a855;
    --accent-light: #d4ba6a;
    --accent-dark: #b89640;
    --white: #ffffff;
    --light: #f7f8fc;
    --light-2: #eef1f5;
    --gray: #8892a4;
    --gray-light: #c4cad4;
    --text: #1a202c;
    --text-light: #3d4f65;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 4px 20px rgba(200, 168, 85, 0.25);
    --radius: 16px;
    --radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative;
    padding-left: 40px;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 2px;
    background: var(--accent);
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 20px;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 700px;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::after { width: 300px; height: 300px; }

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 85, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-dark {
    background: var(--primary);
    color: var(--white);
}
.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.navbar.scrolled .navbar-menu a { color: var(--text); }
.navbar.scrolled .navbar-menu a:hover,
.navbar.scrolled .navbar-menu a.active { color: var(--primary); background: var(--light); }
.navbar.scrolled .navbar-logo .logo-text { color: var(--primary); }
.navbar.scrolled .lang-switcher {
    background: var(--light);
    border-color: var(--light-2);
    color: var(--text);
}
.navbar.scrolled .btn-nav {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}
.navbar.scrolled .navbar-toggle span { background: var(--primary); }

.navbar-container { display: flex; align-items: center; justify-content: space-between; }
.navbar-logo { display: flex; align-items: center; }
.logo-img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}
.navbar.scrolled .logo-img {
    filter: brightness(0);
    opacity: 0.8;
    height: 45px;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.navbar-menu { display: flex; align-items: center; gap: 2px; }
.navbar-menu a {
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}
.navbar-menu a:hover, .navbar-menu a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.lang-switcher:hover { background: rgba(255,255,255,0.22); }
.lang-flag { font-size: 1rem; }
.lang-code { letter-spacing: 1px; }
.btn-nav { padding: 10px 24px; font-size: 0.85rem; }
.navbar-toggle {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 5px;
}
.navbar-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: var(--transition);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,54,93,0.85) 0%, rgba(44,82,130,0.7) 50%, rgba(26,54,93,0.8) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}
.hero-since {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(200,168,85,0.3);
    border-radius: 50px;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}
.hero h1 span {
    display: block;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.9;
    max-width: 600px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Floating shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--accent);
}
.hero-shape-1 { width: 400px; height: 400px; top: -100px; right: 10%; animation: float 8s ease-in-out infinite; }
.hero-shape-2 { width: 200px; height: 200px; bottom: 10%; right: 30%; animation: float 6s ease-in-out infinite reverse; }
.hero-shape-3 { width: 120px; height: 120px; top: 40%; right: 15%; animation: float 10s ease-in-out infinite; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* ---- PAGE HERO (Inner pages) ---- */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
}
.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(26,54,93,0.88), rgba(44,82,130,0.8));
}
.page-hero .section-tag { padding-left: 0; position: relative; }
.page-hero .section-tag::before { display: none; }
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
    position: relative;
}
.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }
.section-alt { background: var(--light); }
.section-dark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}
.section-dark .section-title { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.75); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-desc { margin: 0 auto; }
.section-header .section-tag { padding-left: 0; }
.section-header .section-tag::before { display: none; }

/* ---- ABOUT PREVIEW ---- */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-preview-content .section-desc { margin-bottom: 32px; }
.about-preview-visual { position: relative; }
.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.about-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition);
}
.about-image-wrapper:hover img { transform: scale(1.03); }
.about-year-badge {
    position: absolute;
    bottom: 20px; left: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-year-badge .year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}
.about-year-badge .year-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ---- SERVICE CARDS ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 150px; height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,168,85,0.06), rgba(26,54,93,0.03));
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: rgba(200,168,85,0.15);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after {
    transform: scale(1.5);
}
.service-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,168,85,0.12), rgba(200,168,85,0.04));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white); transform: scale(1.1);
}
.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 700;
}
.service-card p { color: var(--text); font-size: 0.95rem; line-height: 1.8; }

/* ---- STATS ---- */
.stats-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}
.stats-inner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}
.stats-inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(200,168,85,0.08);
}
.stats-header { text-align: center; margin-bottom: 40px; position: relative; }
.stats-header h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 10px; }
.stats-header p { color: rgba(255,255,255,0.7); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
}
.stat-card {
    text-align: center;
    padding: 25px 15px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.stat-icon { font-size: 1.6rem; color: var(--accent); margin-bottom: 10px; }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem; font-weight: 700;
    color: var(--white); line-height: 1; margin-bottom: 6px;
}
.stat-suffix { font-size: 1.2rem; color: var(--accent); }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ---- OPERATIONS PREVIEW ---- */
.ops-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.ops-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 44px 32px 40px;
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    overflow: hidden;
}
.ops-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary));
    opacity: 0;
    transition: var(--transition);
}
.ops-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200,168,85,0.08), rgba(26,54,93,0.04));
    transition: var(--transition);
}
.ops-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: rgba(200,168,85,0.2);
}
.ops-card:hover::before { opacity: 1; }
.ops-card:hover::after {
    transform: scale(1.3);
    background: linear-gradient(135deg, rgba(200,168,85,0.12), rgba(26,54,93,0.06));
}
.ops-number {
    font-family: var(--font-heading);
    font-size: 3rem; font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 18px;
    position: relative;
    display: inline-block;
}
.ops-card h3 {
    font-family: var(--font-body);
    font-size: 1.2rem; font-weight: 700;
    margin-bottom: 14px; color: var(--primary);
    position: relative;
}
.ops-card p { font-size: 0.95rem; color: #2d3748; line-height: 1.8; position: relative; }

/* ---- IMAGE SECTION (side-by-side with content) ---- */
.image-content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.section-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}
.section-image:hover img { transform: scale(1.03); }

/* ---- BRANDS CLEAN SECTION ---- */
.brands-clean-section {
    background: var(--white);
    position: relative;
    padding: 40px 0 30px;
}
.brands-clean-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
}
.brands-clean-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 50px;
    padding: 20px 0;
}
.brand-clean-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: var(--transition);
}
.brand-clean-item img {
    max-height: 45px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    opacity: 0.85;
    transition: var(--transition);
}
.brand-clean-item:hover img {
    opacity: 1;
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .brands-clean-row { gap: 24px 30px; }
    .brand-clean-item img { max-height: 40px; max-width: 100px; }
    .contact-premium-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
}

/* ---- BRANDS PAGE CARDS ---- */
.brands-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.brand-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}
.brand-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.brand-card-header {
    padding: 30px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative; overflow: hidden;
}
.brand-card-header::after {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px;
    border-radius: 50%;
    background: rgba(200,168,85,0.1);
}
.brand-card-header h3 {
    font-family: var(--font-body);
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); position: relative;
}
.brand-card-body { padding: 30px; }
.brand-card-body p { font-size: 0.95rem; color: var(--text); line-height: 1.8; margin-bottom: 20px; }
.brand-partners-label {
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent); margin-bottom: 12px;
}
.brand-partners-list { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-badge {
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--light);
    font-size: 0.82rem; font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}
.partner-badge:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ---- TIMELINE ---- */
.timeline { position: relative; padding: 40px 0; }
.timeline::before {
    content: ''; position: absolute;
    left: 50%; transform: translateX(-50%);
    top: 0; bottom: 0; width: 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(200,168,85,0.15));
}
.timeline-item { display: flex; align-items: flex-start; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; padding-right: 60px; padding-left: 0; }
.timeline-item:nth-child(even) .timeline-content { padding-left: 60px; }
.timeline-content { flex: 1; }
.timeline-dot {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--accent);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 4px rgba(200,168,85,0.2);
    z-index: 2;
}
.timeline-year { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); margin-bottom: 8px; }
.timeline-title { font-family: var(--font-body); font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.timeline-desc { font-size: 0.95rem; color: var(--text); line-height: 1.8; }

/* ---- FOUNDER ---- */
.founder-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.founder-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.founder-visual img { width: 100%; height: 450px; object-fit: cover; }
.founder-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(26,54,93,0.9), transparent);
}
.founder-tag {
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--accent);
}

/* ---- VISION/MISSION ---- */
.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 60px; }
.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative; overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.vm-card::before {
    content: ''; position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
}
.vm-card h3 { font-size: 1.4rem; margin-bottom: 16px; }
.vm-card p { font-size: 0.95rem; color: var(--text); line-height: 1.8; }

/* Today Stats */
.today-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.today-stat {
    text-align: center; padding: 20px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.today-stat-value { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--accent); }
.today-stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ---- CONTACT PREMIUM ---- */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.contact-card-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 0;
    word-break: break-word;
}
.contact-card-item::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    transform: scaleX(0);
    transition: var(--transition);
}
.contact-card-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.contact-card-item:hover::after { transform: scaleX(1); }
.contact-card-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(200,168,85,0.3);
}
.contact-card-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 700;
    margin-bottom: 8px; color: var(--primary);
}
.contact-card-item p,
.contact-card-item a {
    font-size: 0.9rem; color: var(--text);
    line-height: 1.6;
}
.contact-card-item a:hover { color: var(--accent); }

.contact-premium-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.contact-form-header {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-form-header h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}
.contact-form-header p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}
.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    margin-top: 8px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--light);
}
.form-control::placeholder { color: var(--gray); }
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(200,168,85,0.12); background: var(--white); }
textarea.form-control { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.alert { padding: 14px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; }
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    min-height: 500px;
}
.contact-map-container {
    width: 100%; height: 100%;
}
.contact-map-container iframe {
    width: 100%; height: 100%; border: 0; min-height: 500px;
}

/* ---- OPERATIONS PAGE ---- */
.ops-model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ops-process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.ops-process-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.ops-process-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transition: var(--transition);
}
.ops-process-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.ops-process-card:hover::after { transform: scaleX(1); }
.ops-process-icon {
    width: 55px; height: 55px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(200,168,85,0.12), rgba(200,168,85,0.04));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: var(--accent); font-size: 1.3rem;
    transition: var(--transition);
}
.ops-process-card:hover .ops-process-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
}
.ops-process-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.ops-process-card p { font-size: 0.92rem; color: var(--text); line-height: 1.8; }

.integrated-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 60px; text-align: center;
    margin-top: 60px;
    position: relative; overflow: hidden;
}
.integrated-section::before {
    content: ''; position: absolute;
    top: -100px; right: -100px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(200,168,85,0.06);
}
.integrated-section h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 16px; position: relative; }
.integrated-section p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 650px; margin: 0 auto; position: relative; }

/* ---- FOOTER ---- */
.footer {
    background: var(--white);
    border-top: 3px solid var(--accent);
    padding: 50px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 30px;
}
.footer-logo { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { height: 42px; width: auto; filter: brightness(0); opacity: 0.8; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--text); font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8rem; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--primary); margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-light); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; color: var(--text-light); }
.footer-contact-list i { color: var(--accent); margin-top: 3px; flex-shrink: 0; font-size: 0.8rem; }
.footer-contact-list a { color: var(--text-light); transition: var(--transition); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; border-top: 1px solid rgba(0,0,0,0.06);
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-light); }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; }
.footer-bottom-links a { color: var(--text-light); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-links span { color: var(--gray-light); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    background: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 1.5rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    animation: wp-pulse 2s infinite;
}
.whatsapp-float span {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}
@keyframes wp-pulse {
    0%, 100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 35px rgba(37, 211, 102, 0.7); }
}

/* ---- BACK TO TOP ---- */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    box-shadow: var(--shadow-gold);
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ---- SCROLL REVEAL ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .services-grid, .ops-process-grid { grid-template-columns: repeat(2, 1fr); }
    .ops-grid { grid-template-columns: repeat(2, 1fr); }
    .ops-grid .ops-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview, .founder-section, .ops-model-grid, .image-content-section { grid-template-columns: 1fr; gap: 40px; }
    .brands-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed; top: 70px; right: -100%;
        width: 280px; height: auto;
        background: rgba(255,255,255,0.65);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column; align-items: stretch;
        padding: 16px 0; gap: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 998;
        box-shadow: -5px 10px 40px rgba(0,0,0,0.12);
        border-radius: 0 0 0 16px;
        border-top: 3px solid var(--accent);
        border-bottom: 3px solid var(--accent);
    }
    .navbar-menu.open { right: 0; }
    .navbar-menu a {
        width: 100%; padding: 14px 24px;
        font-size: 0.95rem; color: var(--text) !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transition: all 0.25s ease;
        display: flex; align-items: center; gap: 10px;
        position: relative;
    }
    .navbar-menu a::before {
        content: '';
        width: 6px; height: 6px;
        border-radius: 50%;
        background: var(--gray-light);
        transition: var(--transition);
        flex-shrink: 0;
    }
    .navbar-menu a:last-child { border-bottom: none; }
    .navbar-menu a:hover { background: rgba(0,0,0,0.02) !important; color: var(--accent) !important; padding-left: 30px; }
    .navbar-menu a:hover::before { background: var(--accent); transform: scale(1.4); }
    .navbar-menu a.active { color: var(--accent) !important; font-weight: 600; background: rgba(200,168,85,0.06) !important; }
    .navbar-menu a.active::before { background: var(--accent); transform: scale(1.5); }
    .navbar-toggle { display: flex; z-index: 999; }
    .navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .navbar-toggle.active span:nth-child(2) { opacity: 0; }
    .navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .btn-nav { display: none; }
    .hero h1 { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .section { padding: 60px 0; }
    .services-grid, .ops-grid, .ops-process-grid { grid-template-columns: 1fr; }
    .ops-grid .ops-card:last-child { grid-column: span 1; max-width: 100%; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stats-inner { padding: 40px 25px; }
    .stat-number { font-size: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-cards-row { grid-template-columns: 1fr 1fr; }
    .contact-premium-grid { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; padding-left: 50px; }
    .timeline-item:nth-child(odd) .timeline-content { text-align: left; padding-right: 0; padding-left: 0; }
    .timeline-item:nth-child(even) .timeline-content { padding-left: 0; }
    .timeline-dot { left: 20px; transform: translateX(-50%); }
    .vision-mission { grid-template-columns: 1fr; }
    .today-stats { grid-template-columns: repeat(2, 1fr); }
    .integrated-section { padding: 40px 25px; }
    .page-hero { padding: 130px 0 60px; }
    .about-image-wrapper img { height: 300px; }
    .section-image img { height: 300px; }
    .whatsapp-float { bottom: 80px; right: 20px; padding: 14px 18px; font-size: 1.4rem; }
    .brands-clean-row { gap: 20px 24px; }
    .brand-clean-item img { max-height: 35px; max-width: 90px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-card { padding: 20px 15px; }
    .today-stats { grid-template-columns: 1fr; }
    .contact-cards-row { grid-template-columns: 1fr; }
    .contact-card { padding: 20px; }
}
