/* 
  DSA Dijital - Zarif & Sofistike CSS 
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Logo Colors */
    --color-primary: #2B4A70; /* Navy Blue (D harfi ve Metin) */
    --color-accent-1: #EB6B40; /* Orange (S harfi) */
    --color-accent-2: #E8AF30; /* Yellow (A harfi) */
    
    /* Neutral/Elegant Colors */
    --color-bg: #FDFCF8; /* Ã‡ok aÃ§Ä±k krem/bej (Zarif arka plan) */
    --color-surface: #FFFFFF; /* Kartlar vb. iÃ§in beyaz */
    --color-text-main: #333333; /* Ana metin rengi */
    --color-text-muted: #666666; /* Daha silik metin rengi */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Layout */
    --container-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.2;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typewriter Text inside Header */
#typewriter-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
}

.typewriter-cursor {
    color: var(--color-accent-1);
    font-weight: 400;
    animation: blinkCursor 0.7s infinite normal;
}

@keyframes blinkCursor {
  from, to { opacity: 1; }
  50% { opacity: 0; }
}

/* Header & Nav */
header {
    background-color: #f4f5f7; /* AÃ§Ä±k gri */
    padding: 18px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    /* Logo HTML'de max-height 200px ile ayarlandi */
}

.logo-letters {
    display: flex;
    gap: 2px;
}
.logo-letters span:nth-child(1) { color: var(--color-primary); }
.logo-letters span:nth-child(2) { color: var(--color-accent-1); }
.logo-letters span:nth-child(3) { color: var(--color-accent-2); }

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--color-primary);
    letter-spacing: 1px;
    margin-top: 5px;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-main);
    position: relative;
    display: block;
    padding: 10px 0;
}

nav ul li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--color-accent-1);
    transition: var(--transition-smooth);
}

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

nav ul li a:hover,
nav ul li a.active {
    color: var(--color-primary);
}

/* Dropdown */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-surface);
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
    flex-direction: column;
    gap: 0;
}

nav ul li:hover .dropdown {
    display: flex;
}

.dropdown li a {
    padding: 10px 20px;
    margin: 0;
}

.dropdown li > a::after {
    display: none; /* No underline in dropdown */
}

.dropdown li a:hover {
    background-color: rgba(0,0,0,0.02);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-body);
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* Hero Section */
.hero {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26, 43, 76, 0.75);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-subtitle {
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 15px;
    display: block;
}

.slide-content h1 {
    margin-bottom: 25px;
}

.slide-content h1 span {
    font-style: italic;
}

.slide-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Value Cards Hover Animation */
.value-text-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}
.value-text {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-out;
}
.service-card:hover .value-text-wrapper {
    grid-template-rows: 1fr;
}
.service-card:hover .value-text {
    opacity: 1;
}
.service-card:hover h4 {
    color: var(--color-accent-1) !important;
}
.service-card:hover svg {
    stroke: var(--color-accent-1) !important;
}

/* Footer */
footer {
    background-color: var(--color-primary);
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--color-accent-2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- DSA Intro Animation Overlay --- */
.dsa-hero-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dsa-hero-overlay.active {
    opacity: 1;
}

.dsa-letters {
    font-size: 15vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 3px rgba(255,255,255,0.05);
    display: flex;
    gap: 0.5vw;
    perspective: 1000px;
}

.dsa-letters span {
    display: inline-block;
    transform: translateZ(-2000px) scale(0.1);
    opacity: 0;
    transition: all 5s cubic-bezier(0.25, 1, 0.5, 1);
}

.dsa-hero-overlay.active .dsa-letters span:nth-child(1) {
    transform: translateZ(0) scale(1);
    opacity: 1;
    color: var(--color-primary);
    -webkit-text-stroke: 0;
    text-shadow: 0 10px 40px rgba(58, 86, 121, 0.5);
    transition-delay: 0.1s;
}

.dsa-hero-overlay.active .dsa-letters span:nth-child(2) {
    transform: translateZ(0) scale(1);
    opacity: 1;
    color: var(--color-accent-1);
    -webkit-text-stroke: 0;
    text-shadow: 0 10px 40px rgba(235, 107, 64, 0.5);
    transition-delay: 0.25s;
}

.dsa-hero-overlay.active .dsa-letters span:nth-child(3) {
    transform: translateZ(0) scale(1);
    opacity: 1;
    color: var(--color-accent-2);
    -webkit-text-stroke: 0;
    text-shadow: 0 10px 40px rgba(74, 188, 150, 0.5);
    transition-delay: 0.4s;
}

.dsa-typewriter-container {
    margin-top: 3vh;
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dsa-typewriter-text {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #ffffff;
    border-right: 4px solid var(--color-accent-1);
    padding-right: 5px;
}

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: var(--color-accent-1); }
}

.dsa-typewriter-text.blinking {
    animation: blinkCursor 0.8s step-end infinite;
}

/* =========================================
   V2 REDESIGN STYLES & RESPONSIVE DESIGN
   ========================================= */

/* Header V2 Updates */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
header nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
}

/* Hero Section V2 */
.hero-v2 {
    background: linear-gradient(135deg, #112A46 0%, #1A365D 100%);
    position: relative;
    overflow: hidden;
    color: white;
    padding: 140px 0 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}
.hero-v2-bg {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    max-width: 1000px;
}
.hero-v2-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}
.hero-v2-subtitle {
    color: var(--color-accent-1);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}
.hero-v2-title {
    font-size: 4.2rem;
    line-height: 1.15;
    color: white;
    margin-bottom: 30px;
}
.hero-v2-title span {
    color: var(--color-accent-2);
}
.hero-v2-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}
.hero-v2-buttons {
    display: flex;
    gap: 20px;
}
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Services Grid V2 */
.services-v2 {
    background-color: var(--color-bg);
    padding: 100px 0;
    text-align: center;
}
.section-subtitle-v2 {
    color: var(--color-accent-1);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}
.services-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 50px;
}
.service-card-v2 {
    background: white;
    border-radius: 16px;
    padding: 50px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.02);
}
.service-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    border-color: rgba(235, 107, 64, 0.2);
}
.service-icon-v2 {
    width: 70px;
    height: 70px;
    background: rgba(43, 74, 112, 0.05);
    color: var(--color-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    transition: var(--transition-smooth);
}
.service-card-v2:hover .service-icon-v2 {
    background: var(--color-primary);
    color: white;
}
.service-card-v2 h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.service-card-v2 p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.view-all-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.view-all-link:hover {
    color: var(--color-accent-1);
    transform: translateX(5px);
}

/* Why Us & Stats V2 */
.why-us-v2 {
    background: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.why-us-v2-bg {
    position: absolute;
    left: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    opacity: 0.03;
    pointer-events: none;
}
.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.why-us-features {
    list-style: none;
    margin-top: 35px;
}
.why-us-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    font-weight: 500;
    color: var(--color-text-main);
    font-size: 1.05rem;
}
.why-us-features li svg {
    color: var(--color-accent-1);
    flex-shrink: 0;
}
.stats-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.stat-card-v2 {
    background: var(--color-bg);
    padding: 35px 30px;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid rgba(0,0,0,0.02);
}
.stat-icon-v2 {
    color: var(--color-accent-1);
}
.stat-info-v2 h4 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 5px;
    line-height: 1;
}
.stat-info-v2 span {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 10px;
    color: var(--color-text-main);
}
.stat-info-v2 p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Partners V2 */
.partners-v2 {
    padding: 70px 0;
    background: var(--color-bg);
    text-align: center;
}
.partners-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.partners-strip img {
    height: 45px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-smooth);
    object-fit: contain;
}
.partners-strip img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* CTA Banner V2 */
.cta-banner-v2 {
    padding: 80px 0;
    background: var(--color-bg);
}
.cta-box-v2 {
    background: linear-gradient(135deg, #112A46 0%, #1A365D 100%);
    border-radius: 20px;
    padding: 60px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 42, 70, 0.2);
}
.cta-box-v2-bg {
    position: absolute;
    left: -5%;
    top: -20%;
    width: 300px;
    opacity: 0.15;
    pointer-events: none;
}
.cta-box-v2-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cta-box-v2-icon {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-1);
    flex-shrink: 0;
}
.cta-box-v2-text h3 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 12px;
}
.cta-box-v2-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
}
.cta-box-v2-btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Footer V2 Enhancements */
.footer-v2 {
    background-color: #0F1F35;
    padding: 80px 0 30px;
}
.footer-content-v2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}
.footer-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-social-btn:hover {
    background: var(--color-accent-1);
    border-color: var(--color-accent-1);
    transform: translateY(-3px);
}
.footer-contact-list {
    list-style: none;
}
.footer-contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.footer-contact-list li svg {
    color: var(--color-accent-1);
    flex-shrink: 0;
    margin-top: 5px;
}
.footer-contact-list li a {
    color: rgba(255,255,255,0.7);
}
.footer-contact-list li a:hover {
    color: var(--color-accent-2);
}

/* =========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================= */

@media (max-width: 1400px) {
    .nav-container { padding: 0 30px; }
    nav ul { gap: 20px; }
    .hero-v2-title { font-size: 3.6rem; }
    .cta-box-v2 { padding: 50px; }
}

@media (max-width: 1200px) {
    .hero-v2-title { font-size: 3.2rem; }
    .hero-v2-bg { width: 70%; right: -15%; }
    .services-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .why-us-grid { gap: 40px; }
    .cta-box-v2 { padding: 40px; }
    .footer-content-v2 { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

@media (max-width: 992px) {
    /* Header/Nav Mobile adjustment */
    header nav { display: flex; flex-wrap: wrap; margin-top: 15px; width: 100%; order: 3; justify-content: center; }
    .nav-container { flex-wrap: wrap; }
    .header-right { margin-left: auto; }
    
    .hero-v2 { padding: 100px 0; min-height: auto; }
    .hero-v2-title { font-size: 2.8rem; }
    .why-us-grid { grid-template-columns: 1fr; }
    .stats-grid-v2 { grid-template-columns: repeat(2, 1fr); }
    .cta-box-v2 { flex-direction: column; text-align: center; gap: 30px; }
    .cta-box-v2-content { flex-direction: column; text-align: center; }
    .partners-strip { gap: 40px; }
}

@media (max-width: 768px) {
    .hero-v2-title { font-size: 2.2rem; }
    .hero-v2-text { font-size: 1rem; }
    .hero-v2-buttons { flex-direction: column; }
    .services-grid-v2 { grid-template-columns: 1fr; }
    .stats-grid-v2 { grid-template-columns: 1fr; }
    .partners-strip { gap: 30px; flex-direction: column; }
    .footer-content-v2 { grid-template-columns: 1fr; }
    .cta-box-v2-text h3 { font-size: 1.8rem; }
    header nav ul { flex-direction: column; gap: 10px; align-items: center; }
    .header-right { margin: 15px auto 0; }
}

/* Watermark fix for background tone differences */
img[alt="Pusula Filigran"] {
    mix-blend-mode: multiply;
}

/* =========================================
   EXACT MOCKUP V2 STYLES
   ========================================= */

/* Typography & Colors */
:root {
    --color-orange: #F26D45;
    --color-navy: #0F1F35;
    --color-navy-hero: #112A46;
    --color-light-gray: #F9FAFB;
    --color-text-dark: #333333;
    --color-text-gray: #666666;
    --color-white: #ffffff;
}

/* Header Mockup */
.header-mockup {
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container-mockup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 90px;
    max-width: 1400px;
    margin: 0 auto;
}
.logo-mockup img {
    height: 120px;
    margin-top: -15px; 
}
.nav-mockup ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-mockup ul li a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.nav-mockup ul li a:hover, .nav-mockup ul li a.active {
    color: var(--color-navy);
    border-bottom: 2px solid var(--color-orange);
}
.btn-navy {
    background: var(--color-navy);
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-navy:hover {
    background: var(--color-orange);
}

/* Hero Section */
.hero-mockup {
    background: #051022;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hero-stars {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}
.hero-container-mockup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}
.hero-content-mockup {
    width: 50%;
    color: white;
}
.hero-subtitle {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}
.orange-text {
    color: var(--color-orange);
}
.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 90%;
}
.hero-buttons {
    display: flex;
    gap: 20px;
}
.btn-orange-lg {
    background: var(--color-orange);
    color: white;
    padding: 14px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-orange-lg:hover {
    background: #e05e36;
}
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.btn-outline-white:hover {
    border-color: white;
}
.hero-image-mockup {
    width: 45%;
    display: flex;
    justify-content: flex-end;
}
.hero-image-mockup img {
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Services */
.services-mockup {
    padding: 80px 0;
    background: var(--color-white);
    text-align: center;
}
.orange-subtitle {
    color: var(--color-orange);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}
.section-header-mockup h2 {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 60px;
}
.services-grid-mockup {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.scard-mockup {
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    padding: 30px 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: 0.3s;
}
.scard-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.scard-icon {
    color: var(--color-navy);
    margin-bottom: 15px;
}
.scard-line {
    width: 30px;
    height: 2px;
    background: var(--color-orange);
    margin: 0 auto 15px;
}
.scard-mockup h3 {
    font-size: 1.1rem;
    color: var(--color-navy);
    margin-bottom: 15px;
}
.scard-mockup p {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    line-height: 1.5;
}
.services-link-mockup a {
    color: var(--color-navy);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Why Us */
.why-mockup {
    padding: 80px 0;
    background: var(--color-light-gray);
    position: relative;
    overflow: hidden;
}
.why-watermark {
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    opacity: 0.05;
    pointer-events: none;
}
.why-container-mockup {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}
.why-left-mockup {
    width: 45%;
}
.why-left-mockup h2 {
    font-size: 2.2rem;
    color: var(--color-navy);
    margin-bottom: 20px;
}
.why-left-mockup p {
    color: var(--color-text-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
}
.why-list-mockup {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-list-mockup li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--color-text-dark);
    font-weight: 500;
}
.why-list-mockup li svg {
    color: var(--color-orange);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.why-right-mockup {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.stat-card-mockup {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.stat-icon-m {
    color: var(--color-orange);
    flex-shrink: 0;
}
.stat-content-m h4 {
    font-size: 2rem;
    color: var(--color-navy);
    line-height: 1;
    margin-bottom: 5px;
}
.stat-content-m span {
    display: block;
    font-weight: 700;
    color: var(--color-text-dark);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.stat-content-m p {
    font-size: 0.8rem;
    color: var(--color-text-gray);
    line-height: 1.4;
}

/* Partners */
.partners-mockup {
    padding: 60px 0;
    background: white;
}
.partners-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.partner-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.partner-img:hover {
    transform: translateY(-3px);
}

/* CTA */
.cta-mockup {
    padding: 60px 0;
    background: var(--color-light-gray);
}
.cta-box-m {
    background: var(--color-navy);
    border-radius: 12px;
    padding: 50px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(15, 31, 53, 0.2);
}
.cta-left-m {
    display: flex;
    align-items: center;
    gap: 30px;
}
.cta-icon-m {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    flex-shrink: 0;
}
.cta-text-m h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.cta-text-m p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}
.cta-right-m {
    flex-shrink: 0;
}

/* Footer */
.footer-mockup {
    background: var(--color-navy);
    padding: 60px 0 20px;
    color: white;
}
.footer-grid-m {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo-m img {
    height: 120px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 20px;
}
.footer-desc-m {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}
.footer-socials-m {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-socials-m a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: 0.3s;
}
.footer-socials-m a:hover {
    background: var(--color-orange);
}
.footer-col-m h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.footer-col-m ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col-m ul li {
    margin-bottom: 12px;
}
.footer-col-m ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}
.footer-col-m ul li a:hover {
    color: var(--color-orange);
}
.contact-ul-m li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.contact-ul-m li svg {
    color: var(--color-orange);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}
.footer-bottom-m {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}
.footer-bottom-links-m a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid-mockup { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .hero-title { font-size: 2.8rem; }
}
@media (max-width: 992px) {
    .hero-container-mockup { flex-direction: column; text-align: center; }
    .hero-content-mockup, .hero-image-mockup { width: 100%; }
    .hero-desc { margin: 20px auto; }
    .hero-buttons { justify-content: center; }
    .hero-image-mockup { margin-top: 40px; }
    .why-container-mockup { flex-direction: column; gap: 40px; }
    .why-left-mockup, .why-right-mockup { width: 100%; }
    .cta-box-m { flex-direction: column; text-align: center; gap: 30px; }
    .cta-left-m { flex-direction: column; }
    .footer-grid-m { grid-template-columns: repeat(2, 1fr); }
    .nav-mockup ul { display: none; /* simple mobile hide for now */ }
}
@media (max-width: 768px) {
    .services-grid-mockup { grid-template-columns: repeat(2, 1fr); }
    .stat-card-mockup { flex-direction: column; text-align: center; align-items: center; }
    .footer-grid-m { grid-template-columns: 1fr; }
    .footer-bottom-m { flex-direction: column; gap: 15px; text-align: center; }
}
@media (max-width: 576px) {
    .services-grid-mockup { grid-template-columns: 1fr; }
    .why-right-mockup { grid-template-columns: 1fr; }
}

/* Fix Dropdown Menu */
.nav-mockup li.has-dropdown {
    position: relative;
}
.nav-mockup ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    display: none; /* Hide by default */
    flex-direction: column;
    padding: 10px 0;
    gap: 0;
    border-radius: 8px;
    z-index: 1000;
}
.nav-mockup li.has-dropdown:hover ul.dropdown {
    display: flex;
}
.nav-mockup ul.dropdown li {
    width: 100%;
}
.nav-mockup ul.dropdown li a {
    padding: 12px 20px;
    border-bottom: none;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}
.nav-mockup ul.dropdown li a:hover {
    background: #f9fafb;
    color: var(--color-orange);
    border-bottom: none;
}


