/* ========================================
   CSS Reset & Base Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #f8aa01;
    --primary-dark: #e69900;
    --primary-light: #ffb84d;
    --secondary-color: #000000;
    --text-dark: #000000;
    --text-light: #666666;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Header Top Bar */
.header-top {
    background-color: var(--bg-white);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

.header-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.customer-service {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.05) 0%, rgba(248, 170, 1, 0.08) 100%);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(248, 170, 1, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 170, 1, 0.15);
    border-color: rgba(248, 170, 1, 0.2);
}

.service-item:hover::before {
    left: 100%;
}

.service-item i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(248, 170, 1, 0.2);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-item:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 12px rgba(248, 170, 1, 0.3);
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.service-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.3px;
}

.social-media {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #f8aa01;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 14px;
}

.social-link:hover {
    background-color: #f8aa01;
    color: #000000;
    transform: translateY(-2px);
}

.navbar {
    padding: var(--spacing-sm) 0;
    background: #000000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .nav-wrapper {
        position: relative;
    }
}

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

@media (max-width: 968px) {
    .header-top-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .customer-service {
        order: 3;
        width: 100%;
        justify-content: center;
        margin-top: var(--spacing-xs);
    }
    
    .social-media {
        order: 2;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }
    
    .header-top-wrapper {
        flex-direction: column;
        gap: 0;
    }
    
    /* Üst Şerit - Müşteri Hizmetleri */
    .customer-service {
        order: -1;
        width: 100%;
        margin: 0;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
        justify-content: center;
    }
    
    .service-item {
        justify-content: center;
        padding: 0;
        gap: 10px;
        background: transparent;
        border: none;
    }
    
    .service-item::before {
        display: none;
    }
    
    .service-item i {
        width: 28px;
        height: 28px;
        font-size: 14px;
        padding: 7px;
    }
    
    .service-info {
        align-items: center;
        text-align: center;
        gap: 2px;
    }
    
    .service-label {
        font-size: 0.75rem;
        display: block;
    }
    
    .service-value {
        font-size: 0.9rem;
        font-weight: 600;
        line-height: 1.3;
    }
    
    /* Logo - Alt Satır */
    .logo {
        order: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px 0;
    }
    
    /* Sosyal Medya - Mobilde Gizle */
    .social-media {
        display: none;
    }
    
    .header-top {
        padding: 0;
    }
}

.nav-menu {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
}

.dropdown-toggle {
    cursor: pointer;
}

.nav-icon {
    flex-shrink: 0;
    transition: var(--transition);
    font-size: 18px;
    width: 18px;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}

.nav-link:hover {
    color: var(--bg-white);
    background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active {
    color: var(--bg-white);
    background-color: rgba(248, 170, 1, 0.25);
}

.nav-link.active:hover {
    background-color: rgba(248, 170, 1, 0.35);
}

.nav-link:hover .nav-icon {
    transform: scale(1.1);
    color: var(--bg-white);
}

.nav-link.active .nav-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

.nav-link.active:hover .nav-icon {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: var(--bg-white);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding-left: 45px;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: rgba(248, 170, 1, 0.08);
    color: var(--primary-color);
    padding-left: 50px;
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

/* Mega Menu Styles */
.nav-item-megamenu {
    position: static;
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 50vw;
    transform: translateX(-50%) translateY(-10px);
    background-color: var(--bg-white);
    width: 1100px;
    max-width: 95vw;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 25px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 1200px) {
    .megamenu {
        width: 1000px;
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .megamenu {
        width: 900px;
        padding: 20px;
    }
    
    .megamenu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 968px) {
    .megamenu {
        width: 700px;
        padding: 18px;
    }
    
    .megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nav-item-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.megamenu-content {
    width: 100%;
}

.megamenu-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

@media (max-width: 1200px) {
    .megamenu-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

.megamenu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 10px;
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.03) 0%, rgba(230, 153, 0, 0.05) 100%);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.megamenu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 170, 1, 0.1), transparent);
    transition: left 0.5s;
}

.megamenu-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(248, 170, 1, 0.15);
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.08) 0%, rgba(230, 153, 0, 0.12) 100%);
}

.megamenu-item:hover::before {
    left: 100%;
}

.megamenu-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(248, 170, 1, 0.25);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.megamenu-icon i {
    font-size: 22px;
    color: var(--bg-white);
}

.megamenu-item:hover .megamenu-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(248, 170, 1, 0.35);
}

.megamenu-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.megamenu-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(248, 170, 1, 0.3);
}

.megamenu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(248, 170, 1, 0.5);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.megamenu-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.megamenu-btn:hover i {
    transform: translateX(5px);
}

.megamenu-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.megamenu-item:hover h4 {
    color: var(--primary-color);
}

.megamenu-item p {
    font-size: 0.7rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--bg-white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-logo {
    display: none;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        max-width: 320px;
        text-align: left;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 0 0 var(--spacing-md) 0;
        gap: 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background-color: var(--bg-white);
        width: 100%;
        margin: 0;
    }
    
    .mobile-menu-logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
    
    .mobile-logo-img {
        height: 50px;
        width: auto;
        object-fit: contain;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-menu li:first-of-type:not(.mobile-menu-logo) {
        border-top: none;
    }
    
    .nav-item-dropdown,
    .nav-item-megamenu {
        margin: 0;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 15px 20px;
        width: 100%;
        gap: 12px;
        color: var(--text-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        font-size: 1rem;
    }
    
    .nav-link span {
        flex: 1;
    }
    
    /* Mobile Dropdown Styles */
    .dropdown-arrow {
        margin-left: auto;
        color: var(--primary-color);
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    
    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-item-dropdown:hover .dropdown-arrow {
        transform: rotate(0deg);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(248, 170, 1, 0.05);
        border-radius: 0;
        margin: 0 !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        padding: 12px 20px 12px 60px;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }
    
    .dropdown-menu a:hover {
        padding-left: 65px;
        background-color: rgba(248, 170, 1, 0.08);
    }
    
    .dropdown-menu a::before {
        content: '' !important;
        position: absolute !important;
        left: 40px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 6px !important;
        height: 6px !important;
        background-color: var(--primary-color) !important;
        border-radius: 50% !important;
        opacity: 1 !important;
    }
    
    /* Mobile Mega Menu Styles - Convert to Dropdown */
    .megamenu {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-shadow: none;
        border-radius: 0;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        background-color: rgba(248, 170, 1, 0.05);
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-sizing: border-box;
    }
    
    .nav-item-megamenu.active .megamenu {
        max-height: 800px;
    }
    
    .megamenu-content {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }
    
    .megamenu-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
        grid-template-columns: none !important;
    }
    
    .megamenu-item {
        padding: 12px 20px 12px 60px;
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 12px;
        background-color: transparent;
        border-radius: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        position: relative;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        min-width: 0;
    }
    
    .megamenu-item::before {
        content: '';
        position: absolute;
        left: 40px;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        background-color: var(--primary-color);
        border-radius: 50%;
        opacity: 1;
    }
    
    .megamenu-item:hover {
        transform: none;
        border-color: transparent;
        box-shadow: none;
        background-color: rgba(248, 170, 1, 0.08);
        padding-left: 65px;
    }
    
    .megamenu-item:hover::before {
        opacity: 1;
    }
    
    .megamenu-icon {
        display: none;
    }
    
    .megamenu-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0;
        font-weight: 500;
        color: var(--text-dark);
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        flex: 1;
        min-width: 0;
    }
    
    .megamenu-item:hover h4 {
        color: var(--primary-color);
    }
    
    .megamenu-item p {
        display: none;
    }
    
    .megamenu-footer {
        display: none;
    }
    
    .megamenu-grid {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .megamenu-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .nav-link .nav-icon {
        color: var(--primary-color);
        font-size: 20px;
        width: 20px;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
        background-color: rgba(248, 170, 1, 0.1);
    }
    
    .nav-link.active {
        color: var(--primary-color);
        background-color: rgba(248, 170, 1, 0.1);
    }
    
    .nav-link.active:hover {
        background-color: rgba(248, 170, 1, 0.2);
    }
    
    .nav-link:hover .nav-icon,
    .nav-link.active .nav-icon {
        color: var(--primary-color);
    }
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ========================================
   Hero Slider Section
   ======================================== */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

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

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--bg-white);
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s backwards;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Slider Navigation Buttons */
.hero-slider-prev,
.hero-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 18px;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background-color: var(--primary-color);
    color: #000000;
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-slider-dots .dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-slider-dots .dot.active {
    background-color: var(--primary-color);
    border-color: var(--bg-white);
    width: 35px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
    }
    
    .hero-slider-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-slider-dots .dot.active {
        width: 25px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Services Section
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 1;
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.service-card:hover .service-card-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(248, 170, 1, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.service-card-overlay i {
    font-size: 4rem;
    color: var(--bg-white);
    transition: transform 0.4s ease;
}

.service-card:hover .service-card-overlay i {
    transform: scale(1.2) rotate(5deg);
}

.service-card-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.service-card-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    flex: 1;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    background-color: rgba(248, 170, 1, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.service-icon i {
    font-size: 2rem;
}

.service-icon svg {
    width: 64px;
    height: 64px;
}

/* Responsive Design for Service Cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .service-card-image {
        height: 200px;
    }
    
    .service-card-overlay i {
        font-size: 3rem;
    }
    
    .service-card-content h3 {
        font-size: 1.3rem;
    }
    
    .service-card-content p {
        font-size: 0.95rem;
    }
}

/* Fallback for missing images */
.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    z-index: 0;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    background: linear-gradient(to bottom, rgba(248, 170, 1, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.gallery-content {
    text-align: center;
    color: var(--bg-white);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content i {
    font-size: 3rem;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-content i {
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .gallery-content i {
        font-size: 2rem;
    }
    
    .gallery-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
}

/* Construction / Coming Soon Section */
.construction-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.construction-content {
    max-width: 600px;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.05) 0%, rgba(248, 170, 1, 0.02) 100%);
    border-radius: 20px;
    border: 2px solid rgba(248, 170, 1, 0.2);
}

.construction-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.construction-icon i {
    font-size: 4rem;
    color: var(--bg-white);
}

.construction-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.construction-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.construction-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.construction-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.construction-actions .btn i {
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(248, 170, 1, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(248, 170, 1, 0.5);
    }
}

@media (max-width: 768px) {
    .construction-section {
        min-height: 400px;
        padding: var(--spacing-lg) 0;
    }
    
    .construction-content {
        padding: var(--spacing-lg);
    }
    
    .construction-icon {
        width: 100px;
        height: 100px;
        margin-bottom: var(--spacing-md);
    }
    
    .construction-icon i {
        font-size: 3rem;
    }
    
    .construction-content h2 {
        font-size: 2rem;
    }
    
    .construction-content p {
        font-size: 1rem;
    }
    
    .construction-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .construction-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Lightbox Modal Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* ========================================
   About Preview Section
   ======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    padding: var(--spacing-md);
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.stat-item {
    text-align: center;
    padding: var(--spacing-sm);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Corporate Section
   ======================================== */
.corporate-section {
    background-color: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.corporate-content {
    margin-top: var(--spacing-lg);
}

.corporate-text {
    max-width: 1000px;
    margin: 0 auto;
}

.content-block {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.02) 0%, rgba(248, 170, 1, 0.05) 100%);
    border-radius: 15px;
}

.content-block h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.feature-list li {
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-item {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 15px rgba(248, 170, 1, 0.3);
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.feature-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.mission-vision-card {
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.05) 0%, rgba(248, 170, 1, 0.02) 100%);
    padding: var(--spacing-xl);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.mission-vision-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 170, 1, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 15px rgba(248, 170, 1, 0.3);
}

.card-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.mission-vision-card h2 {
    color: var(--text-dark);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
    font-weight: 700;
}

.mission-vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.05rem;
}

.mission-list,
.vision-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mission-list li,
.vision-list li {
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.mission-list i,
.vision-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

.values-block {
    margin-top: var(--spacing-xl);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-lg);
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.15);
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* İnsan Kaynakları */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.benefit-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.15);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.benefit-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.contact-info-box {
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.05) 0%, rgba(248, 170, 1, 0.02) 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 30px;
}

.contact-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .content-block {
        padding: var(--spacing-md);
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-card {
        padding: var(--spacing-lg);
    }
    
    .mission-vision-card h2 {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
}

/* ========================================
   Services Detail Section
   ======================================== */
.services-detail-section {
    background-color: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.services-content {
    margin-top: var(--spacing-lg);
}

.service-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

.service-image-column {
    position: sticky;
    top: 100px;
}

.service-hero-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}

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

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

.service-text-column {
    display: flex;
    flex-direction: column;
}

.service-text-column .content-block {
    margin-bottom: 0;
}

.services-text {
    max-width: 1000px;
    margin: 0 auto;
}

.service-feature-item {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-feature-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.15);
}

.service-feature-item .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 15px rgba(248, 170, 1, 0.3);
}

.service-feature-item .feature-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.service-feature-item h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.service-feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .service-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .service-image-column {
        position: static;
    }
    
    .service-hero-image {
        aspect-ratio: 16 / 9;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   References Section
   ======================================== */
.references {
    background-color: var(--bg-white);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.reference-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.reference-item:hover {
    transform: translateY(-5px);
}

.reference-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: var(--spacing-md);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.reference-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 170, 1, 0.1), transparent);
    transition: left 0.5s ease;
}

.reference-card:hover::before {
    left: 100%;
}

.reference-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.2);
    transform: scale(1.02);
}

.reference-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
}

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

.reference-card:hover .reference-logo img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-sm);
    }
    
    .reference-card {
        height: 180px;
        padding: var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .reference-card {
        height: 160px;
        padding: var(--spacing-xs);
    }
}

@media (max-width: 480px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }
    
    .reference-card {
        height: 140px;
        padding: 10px;
    }
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0 0 0;
    width: 100%;
    margin: 0;
    border-bottom: 3px solid #2a2a2a;
}

.cta-container {
    width: 100%;
    padding: 0;
}

.cta-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 30px 50px;
    border: none;
    border-radius: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 140px;
}

.cta-btn i {
    font-size: 3rem;
}

.cta-btn span {
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-offer {
    background-color: #4169E1;
}

.cta-offer:hover {
    background-color: #3556c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(65, 105, 225, 0.4);
}

.cta-whatsapp {
    background-color: #25D366;
}

.cta-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 170, 1, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-sm);
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 170, 1, 0.4);
}

/* Contact Section Styles */
.contact-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-white);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.contact-form-wrapper {
    margin-top: var(--spacing-xl);
}

.contact-info-card {
    background: linear-gradient(135deg, rgba(248, 170, 1, 0.05) 0%, rgba(248, 170, 1, 0.02) 100%);
    padding: var(--spacing-lg);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.contact-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 170, 1, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 15px rgba(248, 170, 1, 0.3);
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.contact-info-card a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin: 5px 0;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.contact-form .form-group label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form .form-group .required {
    color: var(--primary-color);
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: var(--bg-white);
    color: var(--text-dark);
    width: 100%;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 170, 1, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.map-section {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 2px solid var(--border-color);
}

.map-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section Responsive */
@media (max-width: 968px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: var(--spacing-lg) 0;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .contact-info-card {
        padding: var(--spacing-md);
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .contact-icon i {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }
    
    .map-section h2 {
        font-size: 1.5rem;
    }
    
    .map-container {
        height: 350px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: var(--spacing-lg) 0;
    }
    
    .cta-container {
        padding: 0 var(--spacing-sm);
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .cta-btn {
        min-height: 100px;
        padding: 20px 30px;
    }
    
    .cta-btn i {
        font-size: 2rem;
    }
    
    .cta-btn span {
        font-size: 1.1rem;
    }
    
    .modal-content {
        padding: var(--spacing-lg);
    }
    
    .modal-content h2 {
        font-size: 1.75rem;
    }
}

@media (min-width: 769px) {
    .cta-container {
        padding: 0;
    }
    
    .cta-buttons {
        gap: 0;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--bg-white);
    padding: var(--spacing-xl) 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 2fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-section h3,
.footer-section h4 {
    color: var(--bg-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    padding-bottom: var(--spacing-xs);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.footer-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 170, 1, 0.4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 1;
    transition: var(--transition);
}

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

.footer-links a:hover i {
    transform: translateX(3px);
    color: var(--primary-color);
}

.footer-contact-list {
    list-style: none;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(248, 170, 1, 0.1);
    color: var(--primary-color);
    border-radius: 8px;
    flex-shrink: 0;
    font-size: 1rem;
}

.footer-contact-list li div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-list li div .contact-value {
    display: block;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: block;
}

.contact-value:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: var(--spacing-md) 0;
}

.footer-bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    gap: var(--spacing-md);
}

.footer-bottom-content > p {
    text-align: left;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-developer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(248, 170, 1, 0.1);
    border: 1px solid rgba(248, 170, 1, 0.2);
    border-radius: 20px;
    transition: var(--transition);
    text-decoration: none;
}

.footer-developer:hover {
    background: rgba(248, 170, 1, 0.2);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(248, 170, 1, 0.3);
}

.developer-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.developer-name {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer-developer:hover .developer-name {
    color: var(--primary-light);
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .footer-bottom-content > p {
        text-align: center;
    }
    
    .footer-developer {
        justify-content: center;
        margin: 0 auto;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: var(--spacing-lg) 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .footer-developer {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }
    
    .footer-contact-list .contact-value {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
    }
    
    .footer-contact-list .contact-value:active {
        color: var(--primary-color);
    }
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #000000;
    color: var(--bg-white);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: #000000;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 768px) {
    .section-padding {
        padding: var(--spacing-lg) 0;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

