/*
Theme Name: DRC Lojistik Theme
Theme URI: https://drclojistik.com.tr
Author: DRC Lojistik
Author URI: https://drclojistik.com.tr
Description: DRC Lojistik A.S. icin ozel WordPress temasi.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: drclojistik
*/

:root {
    --primary: #0a1628;
    --primary-light: #142240;
    --secondary: #e8a020;
    --secondary-light: #f0b840;
    --accent: #2980b9;
    --text: #333;
    --text-light: #666;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0a1628;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', 'Inter-fallback', sans-serif; color: var(--text); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', 'PlusJakartaSans-fallback', sans-serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--primary); color: rgba(255,255,255,0.8); font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.top-bar a:hover { color: var(--secondary); }
.top-bar .info-items { display: flex; gap: 20px; align-items: center; }
.top-bar .info-items i { color: var(--secondary); margin-right: 6px; }
.top-bar .social-links { display: flex; gap: 12px; }
.top-bar .social-links a { font-size: 14px; }

/* ===== HEADER ===== */
header { background: #fff; padding: 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
header .container { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 52px; width: auto; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 8px; transition: all 0.3s; }
nav a:hover, nav a.current-menu-item a, nav .current_page_item a { background: var(--bg-light); color: var(--secondary); }
.nav-cta { background: var(--secondary) !important; color: #fff !important; font-weight: 600 !important; padding: 10px 24px !important; }
.nav-cta:hover { background: var(--secondary-light) !important; transform: translateY(-1px); }
.mobile-menu { display: none; font-size: 24px; cursor: pointer; color: var(--primary); }

/* ===== WP Menu ===== */
.main-nav { display: flex; align-items: center; gap: 4px; list-style: none; }
.main-nav li a { padding: 10px 16px; font-size: 14px; font-weight: 500; color: var(--text); border-radius: 8px; transition: all 0.3s; display: block; }
.main-nav li a:hover, .main-nav .current-menu-item a { background: var(--bg-light); color: var(--secondary); }

/* Dropdown */
.main-nav li { position: relative; }
.main-nav li .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; border-radius: 12px; box-shadow: 0 8px 32px rgba(10,22,40,0.12); min-width: 240px; padding: 8px 0; z-index: 999; list-style: none; border: 1px solid rgba(0,0,0,0.06); }
.main-nav li .sub-menu li a { padding: 10px 20px; font-size: 13px; white-space: nowrap; border-radius: 0; }
.main-nav li .sub-menu li a:hover { background: var(--bg-light); color: var(--secondary); }
.main-nav li:hover > .sub-menu { display: block; animation: dropIn 0.2s ease; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.menu-item-has-children > a::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-left: 6px; font-size: 11px; }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, var(--primary) 0%, #1a2d4a 50%, var(--primary-light) 100%); color: #fff; padding: 100px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(41,128,185,0.1) 0%, transparent 70%); border-radius: 50%; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,160,32,0.15); border: 1px solid rgba(232,160,32,0.3); padding: 8px 16px; border-radius: 50px; font-size: 13px; color: var(--secondary); font-weight: 500; margin-bottom: 24px; }
.hero h1, .hero h2 { font-size: 48px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span, .hero h2 span { color: var(--secondary); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: var(--secondary); color: #fff; }
.btn-primary:hover { background: var(--secondary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.3); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ===== STAT CARDS ===== */
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.1); padding: 28px; border-radius: 16px; text-align: center; transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.stat-card .icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--secondary), #f0b840); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: #fff; }
.stat-card h3 { font-size: 32px; font-weight: 800; color: #fff; }
.stat-card p { font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ===== SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,160,32,0.1); color: var(--secondary); padding: 6px 16px; border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; }
.section-header h2 { font-size: 36px; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.section-header p { font-size: 16px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%); }
.services .section-header h2 { font-size: 40px; font-weight: 900; letter-spacing: -0.5px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
a.service-card { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.service-card { background: #fff; border-radius: 20px; padding: 40px 32px; box-shadow: 0 2px 12px rgba(10,22,40,0.04); transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); border: 1px solid rgba(10,22,40,0.06); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--secondary), var(--accent)); opacity: 0; transition: opacity 0.4s; }
.service-card::after { content: ''; position: absolute; top: -60px; right: -60px; width: 120px; height: 120px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,32,0.04) 0%, transparent 70%); transition: all 0.4s; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(10,22,40,0.1); border-color: rgba(232,160,32,0.15); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scale(2); }
.sc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 24px; }
.service-card .icon { width: 64px; height: 64px; background: linear-gradient(135deg, rgba(10,22,40,0.03), rgba(232,160,32,0.08)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--secondary); transition: all 0.4s; border: 1px solid rgba(232,160,32,0.08); margin-bottom: 0; }
.service-card:hover .icon { background: linear-gradient(135deg, var(--primary), #1a2d4a); color: var(--secondary); transform: scale(1.05); border-color: transparent; box-shadow: 0 8px 20px rgba(10,22,40,0.15); }
.sc-arrow { width: 40px; height: 40px; border-radius: 50%; background: rgba(10,22,40,0.04); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(10,22,40,0.2); transition: all 0.4s; }
.service-card:hover .sc-arrow { background: var(--secondary); color: #fff; transform: translateX(4px); box-shadow: 0 4px 12px rgba(232,160,32,0.3); }
.service-card h3 { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 12px; letter-spacing: -0.3px; }
.service-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.service-card.featured { border-color: rgba(232,160,32,0.2); background: linear-gradient(135deg, #fffcf5 0%, #fff 60%, rgba(232,160,32,0.02) 100%); box-shadow: 0 4px 20px rgba(232,160,32,0.08); }
.service-card.featured::before { opacity: 1; height: 4px; }
.service-card.featured .icon { background: linear-gradient(135deg, var(--primary), #1a2d4a); color: var(--secondary); border-color: transparent; box-shadow: 0 8px 24px rgba(10,22,40,0.15); }
.service-card.featured .sc-arrow { background: rgba(232,160,32,0.1); color: var(--secondary); }
.service-card.featured:hover .sc-arrow { background: var(--secondary); color: #fff; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.service-tags span { display: inline-block; padding: 6px 14px; border-radius: 8px; font-size: 11.5px; font-weight: 700; background: rgba(10,22,40,0.03); color: var(--primary); border: 1px solid rgba(10,22,40,0.06); letter-spacing: 0.3px; transition: all 0.2s; }
.service-card:hover .service-tags span { background: rgba(10,22,40,0.06); border-color: rgba(10,22,40,0.1); }
.service-card.featured .service-tags span { background: rgba(232,160,32,0.06); border-color: rgba(232,160,32,0.12); color: #8a5d00; }
.service-card.featured:hover .service-tags span { background: rgba(232,160,32,0.1); }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal .svc-card, .reveal .why-card, .reveal .bb-card, .reveal .abt-card, .reveal .num-item { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed .svc-card, .reveal.revealed .why-card, .reveal.revealed .bb-card, .reveal.revealed .abt-card, .reveal.revealed .num-item { opacity: 1; transform: translateY(0); }
.reveal.revealed .svc-card:nth-child(1), .reveal.revealed .why-card:nth-child(1), .reveal.revealed .bb-card:nth-child(1), .reveal.revealed .abt-card:nth-child(1), .reveal.revealed .num-item:nth-child(1) { transition-delay: 0.05s; }
.reveal.revealed .svc-card:nth-child(2), .reveal.revealed .why-card:nth-child(2), .reveal.revealed .bb-card:nth-child(2), .reveal.revealed .abt-card:nth-child(2), .reveal.revealed .num-item:nth-child(2) { transition-delay: 0.1s; }
.reveal.revealed .svc-card:nth-child(3), .reveal.revealed .why-card:nth-child(3), .reveal.revealed .bb-card:nth-child(3), .reveal.revealed .abt-card:nth-child(3), .reveal.revealed .num-item:nth-child(3) { transition-delay: 0.15s; }
.reveal.revealed .svc-card:nth-child(4), .reveal.revealed .why-card:nth-child(4), .reveal.revealed .bb-card:nth-child(4), .reveal.revealed .abt-card:nth-child(4), .reveal.revealed .num-item:nth-child(4) { transition-delay: 0.2s; }
.reveal.revealed .svc-card:nth-child(5), .reveal.revealed .why-card:nth-child(5), .reveal.revealed .bb-card:nth-child(5) { transition-delay: 0.25s; }
.reveal.revealed .why-card:nth-child(6) { transition-delay: 0.3s; }

/* ===== COUNTRIES (legacy - replaced by .net-section in front-page) ===== */

/* ===== CTA ===== */
.cta { padding: 80px 0; background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 50%, #0a1628 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(232,160,32,0.06) 0%, transparent 60%); pointer-events: none; }
.cta h2 { font-size: 32px; font-weight: 800; margin-bottom: 12px; position: relative; font-family: 'Plus Jakarta Sans', sans-serif; }
.cta h2 span { color: #e8a020; }
.cta p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto 32px; position: relative; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-btns .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.cta-btns .btn-white { background: linear-gradient(135deg, #e8a020, #f0b840); color: #fff; box-shadow: 0 4px 20px rgba(232,160,32,0.3); border: none; }
.cta-btns .btn-white:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(232,160,32,0.4); }
.cta-btns .btn-dark { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.15); }
.cta-btns .btn-dark:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.cta-btns .btn-wa { background: rgba(37,211,102,0.15); color: #25d366; border: 1px solid rgba(37,211,102,0.25); }
.cta-btns .btn-wa:hover { background: rgba(37,211,102,0.25); transform: translateY(-3px); }
@media(max-width:640px) { .cta { padding: 60px 0; } .cta h2 { font-size: 24px; } .cta-btns .btn { padding: 12px 24px; font-size: 14px; } }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--primary) 0%, #1a2d4a 50%, var(--primary-light) 100%); color: #fff; padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%); border-radius: 50%; }
.page-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--secondary); }
.page-hero .breadcrumb i { font-size: 10px; }
.page-hero h1 { font-size: 40px; font-weight: 800; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }

/* ===== LAYOUTS ===== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== INFO CARDS ===== */
.info-card { background: #fff; padding: 36px 28px; border-radius: 16px; box-shadow: var(--shadow); text-align: center; transition: transform 0.3s; }
.info-card:hover { transform: translateY(-4px); }
.info-card-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 26px; color: #fff; }
.info-card h3 { font-size: 20px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.info-card p { font-size: 14px; color: var(--text-light); line-height: 1.8; }

/* ===== CERT CARDS ===== */
.cert-card { background: #fff; padding: 32px 24px; border-radius: 16px; box-shadow: var(--shadow); text-align: center; transition: transform 0.3s; }
.cert-card:hover { transform: translateY(-4px); }
.cert-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; color: #fff; }
.cert-card h4 { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.cert-card p { font-size: 13px; color: var(--text-light); }

/* ===== SERVICE DETAIL ===== */
.service-detail { display: grid; grid-template-columns: 100px 1fr; gap: 32px; align-items: start; padding: 20px 0; }
.service-detail-icon { width: 80px; height: 80px; background: linear-gradient(135deg, rgba(232,160,32,0.1), rgba(41,128,185,0.1)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--secondary); }
.service-detail-content h2 { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-detail-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.feature-list li i { color: var(--secondary); font-size: 14px; }
.divider { border: none; border-top: 1px solid #eee; margin: 40px 0; }

/* ===== CONTACT ===== */
.contact-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 0; border-bottom: 1px solid #f0f0f0; }
.contact-item:last-of-type { border-bottom: none; }
.contact-icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px; }
.contact-item h4 { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-light); margin: 0; line-height: 1.6; }
.contact-item a { color: var(--secondary); }
.contact-item a:hover { text-decoration: underline; }
.social-btn { width: 44px; height: 44px; border: 2px solid #eee; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 18px; transition: all 0.3s; }
.social-btn:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #eee; border-radius: 10px; font-size: 14px; font-family: 'Inter', sans-serif; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); }

/* ===== FOOTER ===== */
footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-about p { font-size: 14px; margin-top: 16px; line-height: 1.8; }
footer h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }
footer ul li a { font-size: 14px; transition: color 0.3s; }
footer ul li a:hover { color: var(--secondary); }
footer ul li i { color: var(--secondary); width: 20px; margin-right: 8px; }
.footer-contact p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; }
.footer-contact i { color: var(--secondary); margin-top: 3px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.3s; }
.footer-social a:hover { background: var(--secondary); border-color: var(--secondary); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 9999; transition: transform 0.3s; animation: pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); } 50% { box-shadow: 0 0 0 12px rgba(37,211,102,0); } }

/* ===== SERVICE OVERVIEW CARDS ===== */
.svc-section { padding: 80px 0; background: var(--bg-light); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 32px 36px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    border: 1px solid #eef0f2;
    position: relative;
    overflow: hidden;
}
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    opacity: 0;
    transition: opacity 0.4s;
}
.svc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10,22,40,0.12);
    border-color: rgba(232,160,32,0.2);
}
.svc-card:hover::before { opacity: 1; }
.svc-card-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px;
    margin-bottom: 24px;
    position: relative;
    transition: transform 0.4s;
}
.svc-card:hover .svc-card-icon { transform: scale(1.08); }
.svc-card:nth-child(1) .svc-card-icon { background: linear-gradient(135deg, #0a1628, #1a2d4a); color: var(--secondary); }
.svc-card:nth-child(2) .svc-card-icon { background: linear-gradient(135deg, #e8a020, #f0b840); color: #fff; }
.svc-card:nth-child(3) .svc-card-icon { background: linear-gradient(135deg, #2980b9, #3498db); color: #fff; }
.svc-card:nth-child(4) .svc-card-icon { background: linear-gradient(135deg, #0a1628, #1a2d4a); color: var(--secondary); }
.svc-card:nth-child(5) .svc-card-icon { background: linear-gradient(135deg, #2980b9, #3498db); color: #fff; }
.svc-card:nth-child(6) .svc-card-icon { background: linear-gradient(135deg, #e8a020, #f0b840); color: #fff; }
.svc-card-body h3 {
    font-size: 20px; font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.svc-card-body p {
    font-size: 14px; color: var(--text-light);
    line-height: 1.75; margin-bottom: 20px;
    flex: 1;
}
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.svc-tag {
    background: #f0f4f8;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s;
}
.svc-card:hover .svc-tag { background: #e8edf2; }
.svc-link {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: #fff;
    font-weight: 600; font-size: 14px;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    margin-top: auto;
    transition: all 0.3s;
    align-self: flex-start;
}
.svc-link:hover { transform: translateX(4px); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }
.svc-link i { font-size: 12px; transition: transform 0.3s; }
.svc-link:hover i { transform: translateX(3px); }
@media (max-width: 1024px) { .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 640px) {
    .svc-grid { grid-template-columns: 1fr; gap: 20px; }
    .svc-card { padding: 32px 24px 28px; }
    .svc-section { padding: 60px 0; }
}

/* ===== WP DEFAULTS ===== */
.wp-block-image img { border-radius: 12px; }
.entry-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text-light); }
.entry-content h2 { font-size: 28px; font-weight: 700; color: var(--primary); margin: 32px 0 16px; }
.entry-content h3 { font-size: 22px; font-weight: 600; color: var(--primary); margin: 24px 0 12px; }
.entry-content ul, .entry-content ol { margin: 0 0 16px 24px; color: var(--text-light); }

/* ===== MOBILE NAV ===== */
.mobile-overlay { display: none; position: fixed; inset: 0; background: rgba(10,22,40,0.5); z-index: 998; opacity: 0; transition: opacity 0.3s; }
.mobile-overlay.active { display: block; opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .top-bar .info-items { display: none; }
    header nav {
        position: fixed; top: 0; left: 0; right: 0;
        background: #fff; z-index: 999;
        padding: 80px 24px 32px;
        box-shadow: 0 8px 32px rgba(10,22,40,0.15);
        max-height: 100vh; overflow-y: auto;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        display: flex !important; flex-direction: column; gap: 0;
    }
    header nav.open {
        transform: translateY(0);
    }
    header nav .main-nav { display: flex !important; flex-direction: column !important; gap: 0 !important; width: 100%; padding: 0; margin: 0; }
    header nav a, header nav .main-nav li a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--primary); border-bottom: 1px solid #f0f0f0; text-decoration: none; background: none; }
    header nav a:last-child, header nav .main-nav li:last-child a { border-bottom: none; }
    header nav .main-nav li { list-style: none; width: 100%; }
    header nav .main-nav li .sub-menu { position: static; display: none; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 16px; min-width: auto; background: transparent; }
    header nav .main-nav li .sub-menu li a { font-size: 14px; padding: 10px 0; font-weight: 500; color: #666; }
    header nav .main-nav li.menu-item-has-children.sub-open > .sub-menu { display: block; }
    header nav .nav-cta, header nav .main-nav li a.nav-cta { background: var(--secondary) !important; color: #fff !important; text-align: center; border-radius: 12px; padding: 14px !important; margin-top: 12px; border-bottom: none; }
    .mobile-menu { display: flex; z-index: 1000; position: relative; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer; -webkit-tap-highlight-color: transparent; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero h1, .hero h2 { font-size: 32px; }
    .services-grid { grid-template-columns: 1fr; }
    .about .container { grid-template-columns: 1fr; gap: 40px; }
    .about-features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .three-col { grid-template-columns: 1fr; }
    .four-col { grid-template-columns: 1fr 1fr; }
    .page-hero h1 { font-size: 28px; }
    .service-detail { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
