/* ===== RESPONSIVE CONTAINER SYSTEM ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== RESPONSIVE GRID SYSTEM ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .grid {
        gap: 1.25rem;
    }
}

/* Inline product details (bar page) */
.product-card .product-details{display:none;border-top:1px solid rgba(255,255,255,0.08);margin:12px 16px 0;padding:16px;border-radius:10px;background:rgba(255,255,255,0.03)}
.product-card .product-details[aria-hidden="false"]{display:block}
.product-card .details-inner{max-width:900px}
.product-card .details-title{font-size:18px;font-weight:700;margin:0 0 8px 0;color:#fff}
.product-card .details-subtitle{font-size:15px;font-weight:600;margin:16px 0 8px 0;color:#e0e0e0}
.product-card .details-paragraph{font-size:14px;line-height:1.6;margin:0;color:#d6d6d6}
.product-card .details-list{margin:0;padding-left:18px;color:#cfcfcf;font-size:14px;line-height:1.6}
.product-card .details-list li{margin:4px 0}
.product-card .specs-list li{display:inline-block;margin-right:16px}

/* Modern drawer for bar page */
.product-drawer{position:fixed;inset:0;display:flex;pointer-events:none;z-index:1000;opacity:0;visibility:hidden;transition:opacity .25s ease,visibility .25s ease}

.product-drawer .drawer-backdrop{position:absolute;inset:0;background:rgba(0,0,0,0.3);opacity:0;transition:opacity .25s ease;will-change:opacity}
.product-drawer[aria-hidden="false"] .drawer-backdrop{opacity:1}
.product-drawer .drawer-panel{position:absolute;top:0;right:0;height:100%;width:min(560px,100%);background:linear-gradient(180deg, rgba(18,18,20,0.98), rgba(18,18,20,0.98));box-shadow:-12px 0 40px rgba(0,0,0,0.45);transform:translateX(100%);transition:transform .35s cubic-bezier(.22,.61,.36,1);display:flex;flex-direction:column;will-change:transform}
.product-drawer.active .drawer-panel{transform:translateX(0)}
.product-drawer.active{opacity:1;visibility:visible;pointer-events:auto;display:flex !important}
.product-drawer.active .drawer-backdrop{opacity:1}
.product-drawer.active .drawer-panel{transform:translateX(0)}
.drawer-header{display:flex;align-items:center;justify-content:space-between;padding:20px 22px;border-bottom:1px solid rgba(255,255,255,0.06)}
.drawer-title{font-size:18px;font-weight:700;color:#fff}
.drawer-close{appearance:none;background:transparent;border:0;color:#cfcfcf;font-size:20px;cursor:pointer}
.drawer-close:hover{color:#fff}
.drawer-content{padding:20px 22px 28px;overflow:auto}

/* Product detail styles */
.product-detail h2 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.product-detail h3 {
    color: #eaeaea;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.product-detail p {
    color: #d3d3d3;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail ul li {
    color: #cfcfcf;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
}

.product-detail ul li:last-child {
    border-bottom: none;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 15px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    color: #e6e6e6;
    font-weight: 500;
}

.spec-value {
    color: #fff;
    font-weight: 600;
}

/* Product detail image in drawer */
.product-detail-image {
    text-align: center;
    margin-bottom: 20px;
}

.product-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-height: 300px;
    object-fit: contain;
}

/* Drawer content specific styles */
.drawer-content .product-detail-header {
    margin-bottom: 25px;
}

.drawer-content .product-detail-header h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 0 0;
    text-align: center;
}

.drawer-content .product-detail-description {
    margin-bottom: 25px;
}

.drawer-content .product-detail-description p {
    color: #d3d3d3;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.drawer-content .product-detail-specs {
    margin-bottom: 25px;
}

.drawer-content .product-detail-specs h3 {
    color: #eaeaea;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.drawer-content .product-detail-specs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-content .product-detail-specs ul li {
    color: #cfcfcf;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
    font-size: 13px;
}

.drawer-content .product-detail-specs ul li:last-child {
    border-bottom: none;
}

.drawer-content .product-detail-materials {
    margin-bottom: 20px;
}

.drawer-content .product-detail-materials h3 {
    color: #eaeaea;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.drawer-content .product-detail-materials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-content .product-detail-materials ul li {
    color: #cfcfcf;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
    font-size: 13px;
}

.drawer-content .product-detail-materials ul li:last-child {
    border-bottom: none;
}
.drawer-section{margin-bottom:18px}
.drawer-section h4{margin:0 0 10px 0;color:#eaeaea;font-size:16px}
.drawer-section p{margin:0;color:#d3d3d3;line-height:1.65}
.drawer-list{margin:0;padding-left:18px;color:#cfcfcf;line-height:1.6}
.drawer-list li{margin:4px 0}
.drawer-specs{display:flex;flex-wrap:wrap;gap:12px;margin:0;padding:0;list-style:none}
.drawer-specs li{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.08);padding:8px 12px;border-radius:999px;color:#e6e6e6;font-size:13px}
/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgba(216, 35, 5, 1);
    --primary-hover: rgba(180, 30, 5, 1);
    --dark-bg: rgba(24, 26, 29, 1);
    --darker-bg: var(--dark-bg);
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-gray: #888888;
    --border-color: #333333;
    --overlay-dark: rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
/* Dropdown menü text hizalaması - tüm sayfalarda sola hizalı */
.dropdown-column h4,
.dropdown-column ul li a {
    text-align: left !important;
}

/* GÖZ AT butonlarında alt çizgi olmasın */
.service-card-button {
    text-decoration: none;
}

.header {
    background-color: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(15px);
    padding: 0.4rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 1.5rem;
    max-width: none;
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 0 0.75rem;
    }
}

.logo {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    margin-right: 0;
    margin-left: 0;
    padding-left: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: 350px;
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

.logo-link:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 22px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
    text-align: left;
    line-height: 1;
    transition: color 0.3s ease;
    margin-left: 15px;
}

.logo-link:hover .logo-text {
    color: var(--text-light);
}

/* ===== HAMBURGER MENU ===== */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1004;
    position: relative;
    margin-left: auto;
    margin-right: 1rem;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger-menu:hover .hamburger-line {
    background-color: var(--primary-color);
}

.navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 1rem;
}

/* Close button hidden by default (desktop) */
.nav-close{
    display:none;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
}

.navigation a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.85rem;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navigation a:hover::after {
    width: 100%;
}

/* Active link state */
.navigation a[aria-current="page"],
.navigation a.active {
    color: var(--primary-color);
}

.navigation a[aria-current="page"]::after,
.navigation a.active::after {
    width: 100%;
}

/* ===== DROPDOWN MENU STYLES ===== */
.dropdown-parent {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 450px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    pointer-events: none; /* gizli iken tıklamaları alma */
}

/* Click-based open state */
.dropdown-parent > a[aria-expanded="true"] + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-column {
    width: 100%;
    padding: 0;
    margin: 0;
}

.dropdown-column h4 {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    text-align: left !important;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li {
    margin-bottom: 0.4rem;
}

.dropdown-column ul li a {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    text-align: left !important;
    line-height: 1.4;
}

.dropdown-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.4rem;
    background-color: rgba(220, 20, 60, 0.1);
    border-radius: 4px;
    padding: 0.25rem 0.4rem;
    margin-left: -0.4rem;
}

.language-selector {
    margin-left: auto;
    padding-right: 0;
    position: relative;
    flex-shrink: 0;
    margin-left: 0;
    z-index: 1003;
}

/* Current language text badge */
.language-selector .lang-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
 
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.language-selector .lang-current:hover {
    transform: scale(1.05);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.4rem 0;
    min-width: 110px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1005;
    margin-top: 0.4rem;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-option span {
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    will-change: opacity;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

/* Bar page: use default cover behavior for hero image (no override) */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
    margin-top: 120px;
}

.hero-text {
    max-width: 600px;
    margin-left: 5%;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--text-light);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Hero section specific cta-button styles */
.hero .cta-button {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero .cta-button:hover::before {
    left: 100%;
}

.hero .cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* ===== CAROUSEL NAVIGATION ===== */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 2;
    pointer-events: none;
}

.nav-arrow {
    position: absolute;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.nav-prev {
    left: 30px;
}

.nav-next {
    right: 30px;
}

/* ===== PAGINATION DOTS ===== */
.pagination-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.dot {
    width: 40px;
    height: 4px;
    background: #ffffff !important;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ffffff !important;
    width: 60px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: #ffffff !important;
    transform: scale(1.1);
}

/* ===== PLAY/PAUSE BUTTON ===== */
.play-pause-btn {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-pause-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us {
    background-color: var(--darker-bg);
    padding: 120px 0 100px;
    position: relative;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-us-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.why-choose-us-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.why-choose-us-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.why-choose-us-column {
    text-align: left;
}

.column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.column-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 400;
}

/* ===== PRODUCT CATEGORIES SECTION ===== */
.product-categories {
    background-color: #ffffff;
    background-image: url('../assets/transparantBacgkground.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 100px;
    position: relative;
}

.product-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.product-categories .container {
    position: relative;
    z-index: 2;
}

.product-categories-header {
    text-align: center;
    margin-bottom: 80px;
}

.product-categories-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--darker-bg);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.product-categories-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.product-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.product-category-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
}

.product-category-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.15);
}

.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-category-card:hover::before {
    transform: scaleX(1);
}

.product-category-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.05), rgba(220, 20, 60, 0.02));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;}

.product-category-image img {
    width: 100%;
    height: 100%;
    object-fit: initial;
    transition: transform 0.3s ease;
}

.product-category-card:hover .product-category-image img {
    transform: scale(1.05);
}

.product-category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--darker-bg);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-category-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    opacity: 0.9;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-text {
        margin-left: 3%;
    }
    
    .dropdown-menu {
        min-width: 400px;
        padding: 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header {
        background-color: rgba(15, 15, 15, 0.8);
        padding: 0.8rem 0;
    }
    
    .header .container {
        padding: 0 1rem;
        position: relative;
    }
    
    .logo img {
        height: 40px;
        width: 280px;
    }
    
    .logo-link {
        align-items: center;
    }
    
    .logo-text {
        font-size: 9px;
        letter-spacing: 0.2em;
        margin-right: 50px;
    }
    
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 80px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1004;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
        background: transparent;
        border: none;
    }
    
    .hamburger-menu:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .hamburger-menu.active {
        background-color: rgba(255, 255, 255, 0.15);
    }
    
    .language-selector {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }
    
    .navigation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(-100%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1100;
        margin: 0;
        padding: 80px 2rem 2rem;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        touch-action: pan-y;
    }
    
    .navigation.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    

    
    .navigation ul {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        width: 100%;
    }
    
    .navigation a {
        font-size: 1.2rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        transition: all 0.3s ease;
    }
    
    .navigation a:hover {
        color: var(--primary-color);
        background-color: rgba(255, 255, 255, 0.05);
        padding-left: 1rem;
    }
    
    .navigation a::after {
        display: none;
    }

    /* Mobile close button inside navigation */
    .nav-close{
        display:block;
        position:absolute;
        top:16px;
        right:16px;
        width:40px;
        height:40px;
        border:none;
        border-radius:8px;
        background:rgba(255,255,255,0.08);
        color:#fff;
        font-size:20px;
        line-height:40px;
        text-align:center;
        cursor:pointer;
        z-index: 1200;
    }

    /* Hide close button on mobile navigation; use drag or outside click */
    .navigation .nav-close{display:none}

    .nav-close:hover{
        background:rgba(255,255,255,0.15);
    }
    
    .dropdown-parent {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0.8rem;
        min-width: 100%;
        padding: 1rem;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        display: none;
    }

    .dropdown-parent > a[aria-expanded="true"] + .dropdown-menu {
        display: block;
    }
    
    .dropdown-column {
        margin-bottom: 1.5rem;
    }
    
    .dropdown-column:last-child {
        margin-bottom: 0;
    }
    
    .dropdown-column h4 {
        color: var(--primary-color);
        font-size: 1rem;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .dropdown-column ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 0;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-column ul li a:hover {
        background-color: rgba(220, 20, 60, 0.1);
        padding: 0.5rem;
        margin-left: 0;
        border-radius: 6px;
    }
    
    .language-selector {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }
    
    .language-selector img {
        height: 28px;
        width: 28px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero-text {
        margin-left: 0;
        text-align: center;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content {
        margin-top: 80px;
        padding: 0 20px;
    }
    
    .hero .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
    }
    
    .nav-prev {
        left: 20px;
    }
    
    .nav-next {
        right: 20px;
    }
    
    .pagination-dots {
        bottom: 30px;
    }
    
    .play-pause-btn {
        bottom: 30px;
        right: 30px;
        width: 40px;
        height: 40px;
    }
    
    .why-choose-us {
        padding: 80px 0 60px;
    }
    
    .why-choose-us-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .why-choose-us-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .why-choose-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 50px;
    }
    
    .why-choose-us-column {
        text-align: center;
    }
    
    .column-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
    
    .column-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 0;
    }
    
    .header .container {
        padding: 0 1rem;
        position: relative;
    }
    
    .logo img {
        height: 35px;
        width: 220px;
    }
    
    .logo-link {
        align-items: center;
    }
    
    .logo-text {
        font-size: 8px;
        letter-spacing: 0.15em;
        margin-right: 30px;
    }
    
    .hamburger-menu {
        width: 26px;
        height: 20px;
        right: 70px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .navigation {
        padding: 70px 1.5rem 1.5rem;
    }
    
    .navigation ul {
        gap: 1.5rem;
    }
    
    .navigation a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
    }
    
    .dropdown-menu {
        padding: 0.8rem;
        margin-top: 0.8rem;
    }
    
    .dropdown-column h4 {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        text-align: left !important;
    }
    
    .dropdown-column ul li a {
        font-size: 0.8rem;
        padding: 0.4rem 0;
        text-align: left !important;
    }
    
    .language-selector {
        right: 0;
    }
    
    .language-selector img {
        height: 24px;
        width: 24px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-content {
        margin-top: 60px;
        padding: 0 15px;
    }
    
    .hero .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-prev {
        left: 15px;
    }
    
    .nav-next {
        right: 15px;
    }
    
    .why-choose-us {
        padding: 60px 0 40px;
    }
    
    .why-choose-us-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .why-choose-us-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .why-choose-us-content {
        gap: 30px;
        margin-top: 40px;
    }
    
    .column-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .column-text {
        font-size: 0.95rem;
    }
}

/* ===== CALL TO ACTION SECTION ===== */
.cta-section {
    background-color: var(--darker-bg);
    padding: 120px 0 100px;
    position: relative;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0.8;
}

.cta-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: var(--text-light);
    color: var(--darker-bg);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.3);
}

/* ===== RESPONSIVE DESIGN FOR PRODUCT CATEGORIES ===== */
@media (max-width: 1024px) {
    .product-categories {
        padding: 100px 0 80px;
    }
    
    .product-categories-title {
        font-size: 3rem;
    }
    
    .product-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-categories {
        padding: 80px 0 60px;
    }
    
    .product-categories-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .product-categories-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .product-categories-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .product-category-card {
        padding: 1.5rem;
    }
    
    .product-category-image {
        height: 180px;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .product-categories {
        padding: 60px 0 40px;
    }
    
    .product-categories-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .product-categories-subtitle {
        font-size: 1rem;
    }
    
    .product-categories-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-category-card {
        padding: 1.25rem;
    }
    
    .product-category-image {
        height: 160px;
    }
}

/* ===== RESPONSIVE DESIGN FOR WHY CHOOSE US ===== */
@media (max-width: 1024px) {
    .why-choose-us {
        padding: 100px 0 80px;
    }
    
    .why-choose-us-title {
        font-size: 3rem;
    }
    
    .why-choose-us-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 80px 0 60px;
    }
    
    .why-choose-us-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .why-choose-us-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .why-choose-us-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-us-column {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 60px 0 40px;
    }
    
    .why-choose-us-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .why-choose-us-subtitle {
        font-size: 1rem;
    }
    
    .why-choose-us-column {
        padding: 1.25rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR WHO WE SERVE ===== */
@media (max-width: 1024px) {
    .who-we-serve {
        padding: 100px 0 80px;
    }
    
    .who-we-serve-title {
        font-size: 3rem;
    }
    
    .who-we-serve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .who-we-serve {
        padding: 80px 0 60px;
    }
    
    .who-we-serve-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .who-we-serve-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .who-we-serve {
        padding: 60px 0 40px;
    }
    
    .who-we-serve-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .who-we-serve-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR CTA ===== */
@media (max-width: 1024px) {
    .cta-section {
        padding: 100px 0 80px;
    }
    
    .cta-title {
        font-size: 3.5rem;
    }
    
    .cta-description {
        font-size: 1.2rem;
        max-width: 650px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0 60px;
    }
    
    .cta-title {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .cta-description {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 60px 0 40px;
    }
    
    .cta-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 35px;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }
    
    .cta-tagline {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    /* Mobile hamburger menu adjustments */
    .header .container {
        padding: 0 0.5rem;
    }
    
    .logo img {
        height: 35px;
        width: 240px;
    }
    
    .logo-text {
        font-size: 8px;
        margin-right: 30px;
    }
    
    .hamburger-menu {
        right: 70px;
        padding: 6px;
    }
    
    .language-selector {
        right: 0.5rem;
    }
}

/* ===== WHO WE SERVE SECTION ===== */
.who-we-serve {
    background-color: var(--darker-bg);
    padding: 120px 0 100px;
    position: relative;
}

.who-we-serve-header {
    text-align: center;
    margin-bottom: 80px;
}

.who-we-serve-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.who-we-serve-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.who-we-serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    min-width: 350px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 500px;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

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

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

.service-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.service-card-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    flex: 1;
}

.service-card-button {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
}

.service-card-button:hover {
    background: var(--text-white);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}



/* ===== RESPONSIVE DESIGN FOR WHO WE SERVE ===== */
@media (max-width: 1024px) {
    .who-we-serve {
        padding: 100px 0 80px;
    }
    
    .who-we-serve-title {
        font-size: 3rem;
    }
    
    .who-we-serve-subtitle {
        font-size: 1.2rem;
        max-width: 800px;
    }
    
    .who-we-serve-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-card {
        min-width: 320px;
    }
}

@media (max-width: 768px) {
    .who-we-serve {
        padding: 80px 0 60px;
    }
    
    .who-we-serve-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .who-we-serve-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .who-we-serve-header {
        margin-bottom: 60px;
    }
    
    .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-card {
        min-width: 280px;
    }
    
    .service-card-content {
        padding: 1.25rem;
    }
    
    .service-card-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card-button {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    

}

@media (max-width: 480px) {
    .who-we-serve {
        padding: 60px 0 40px;
    }
    
    .who-we-serve-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .who-we-serve-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .who-we-serve-header {
        margin-bottom: 50px;
    }
    
    .who-we-serve-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
    }
    
    .service-card {
        min-width: 250px;
    }
    

    
    .service-card-content {
        padding: 1rem;
    }
    
    .service-card-title {
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    
    .service-card-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .service-card-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    

}

/* ===== KVKK SECTION ===== */
.kvkk-section {
    background-color: var(--dark-bg);
    padding: 120px 0 100px;
    min-height: 100vh;
}

.kvkk-content {
    max-width: 900px;
    margin: 0 auto;
}

.kvkk-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

.kvkk-text {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
}

.kvkk-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0 15px 0;
    line-height: 1.3;
}

.kvkk-text h2:first-child {
    margin-top: 0;
}

.kvkk-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

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

.back-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.back-button:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(216, 35, 5, 0.3);
}

/* Responsive KVKK */
@media (max-width: 768px) {
    .kvkk-section {
        padding: 80px 0 60px;
    }
    
    .kvkk-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .kvkk-text {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .kvkk-text h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px 0;
    }
    
    .kvkk-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .kvkk-section {
        padding: 60px 0 40px;
    }
    
    .kvkk-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .kvkk-text {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .kvkk-text h2 {
        font-size: 1.2rem;
        margin: 20px 0 10px 0;
    }
    
    .kvkk-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .back-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* ===== REFERENCES SECTION ===== */
.references {
    background-color: #ffffff;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.references::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(220, 20, 60, 0.02) 0%, transparent 50%);
    z-index: 1;
}

.references::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    z-index: 1;
}

.references .container {
    position: relative;
    z-index: 2;
}

.references-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.references-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--darker-bg);
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.references-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-hover));
    border-radius: 2px;
    animation: titleUnderline 2s ease-in-out infinite alternate;
}

@keyframes titleUnderline {
    0% { width: 80px; opacity: 0.7; }
    100% { width: 120px; opacity: 1; }
}

.references-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
}

.references-subtitle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.3), transparent);
    border-radius: 1px;
}

.references-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.95));
    border-radius: 24px;
    padding: 40px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.05),
        0 8px 25px rgba(220, 20, 60, 0.03),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.references-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(220, 20, 60, 0.02) 0%, transparent 50%);
    border-radius: 24px;
    z-index: -1;
}

.references-track {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
    padding: 20px 0;
    position: relative;
}

.references-track::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transform: translateY(-50%);
}

.references-track::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
    transform: translateY(-50%);
}

.reference-logo {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    position: relative;
}

.reference-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.reference-logo:hover::before {
    opacity: 1;
}

.reference-logo:hover {
    transform: translateY(-12px) scale(1.05);
}

.reference-logo-container {
    width: 160px;
    height: 160px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(220, 20, 60, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reference-logo-container::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.6s ease;
}

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

.reference-logo:hover .reference-logo-container {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    box-shadow: 
        0 20px 40px rgba(220, 20, 60, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.02);
}

.reference-logo-image {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.reference-logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.reference-logo:hover .reference-logo-image img {
    filter: drop-shadow(0 8px 16px rgba(220, 20, 60, 0.2));
    transform: scale(1.05);
}

/* ===== REFERENCES NAVIGATION ===== */
.references-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.references-nav::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.2), transparent);
    border-radius: 1px;
}

.reference-nav-arrow {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 4px 15px rgba(220, 20, 60, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.reference-nav-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

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

.reference-nav-arrow:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.4),
        0 4px 12px rgba(0, 0, 0, 0.15);
}

.reference-nav-arrow:active {
    transform: scale(0.95);
}

.reference-nav-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reference-nav-arrow:disabled:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.reference-nav-arrow:disabled::before {
    display: none;
}

/* ===== RESPONSIVE DESIGN FOR REFERENCES ===== */
@media (max-width: 1024px) {
    .references {
        padding: 100px 0 80px;
    }
    
    .references-title {
        font-size: 3rem;
    }
    
    .references-subtitle {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .references-track {
        gap: 30px;
    }
    
    .reference-logo-container {
        width: 140px;
        height: 140px;
        padding: 18px;
    }
    
    .reference-logo-image {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .references {
        padding: 80px 0 60px;
    }
    
    .references-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .references-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .references-header {
        margin-bottom: 60px;
    }
    
    .references-track {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .reference-logo-container {
        width: 130px;
        height: 130px;
        padding: 15px;
    }
    
    .reference-logo-image {
        width: 100px;
        height: 100px;
    }
    
    .references-nav {
        margin-top: 40px;
        gap: 15px;
    }
    
    .reference-nav-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .references {
        padding: 60px 0 40px;
    }
    
    .references-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .references-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .references-header {
        margin-bottom: 50px;
    }
    
    .references-track {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
    
    .reference-logo-container {
        width: 120px;
        height: 120px;
        padding: 12px;
    }
    
    .reference-logo-image {
        width: 96px;
        height: 96px;
    }
    
    .references-nav {
        margin-top: 30px;
        gap: 12px;
    }
    
    .reference-nav-arrow {
        width: 40px;
        height: 40px;
    }
}

/* ===== FOOTER STYLES ===== */
.footer {
    background: #ffffff;
    color: #000000;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/transparantBacgkground.png') center/cover no-repeat;
    opacity: 0.05;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-bottom-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .footer .container {
        padding: 0 0.75rem;
    }
    
    .footer-bottom-navigation {
        gap: 15px;
    }
    
    .footer-middle {
        gap: 30px;
        margin-bottom: 40px;
    }
}

/* Footer Bottom Navigation */
.footer-bottom-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.footer-bottom-column {
    min-width: 120px;
}

.footer-bottom-title {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 12px;
    position: relative;
}

.footer-bottom-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    border-radius: 0.5px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-bottom-links a {
    color: #666666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

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

.footer-bottom-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
    font-size: 10px;
}

.footer-bottom-links a:hover::before {
    opacity: 1;
    left: -12px;
}

.footer-copyright {
    margin-top: 15px;
}

/* Footer Middle Section */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-link {
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-link:hover {
    color: var(--primary-color);
}

.contact-link::after {
    content: '📍';
    position: absolute;
    right: -25px;
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-link:hover::after {
    opacity: 1;
    right: -30px;
}

/* Google Maps Section */
.footer-maps {
    margin-top: 30px;
}

.maps-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000;
}

.maps-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.maps-container iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.maps-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666666;
    margin-top: 10px;
}

.maps-icon {
    color: var(--primary-color);
}

/* Footer Bottom Section */
.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    gap: 20px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-bottom-left p {
    color: #666666;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-center {
    display: flex;
    justify-content: center;
}

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

.social-link-modern {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666666;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.social-link-modern svg {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.social-link-modern:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.3);
    border-color: var(--primary-color);
}

.social-link-modern:hover::before {
    opacity: 1;
}

.social-link-modern:hover svg {
    color: #ffffff;
    transform: scale(1.2);
}

/* Platform-specific colors on hover */
.social-link-modern.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link-modern.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link-modern.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: #dc2743;
}

.social-link-modern.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link-modern.x:hover {
    background: #000000;
    border-color: #000000;
}

/* Active state */
.social-link-modern:active {
    transform: translateY(-2px) scale(1.05);
}

.footer-bottom-right {
    display: flex;
    justify-content: flex-end;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.legal-link:hover {
    color: #000000;
}

.legal-link:hover::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-navigation {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 30px;
    }
    
    .footer-middle {
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-bottom-navigation {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom-left {
        justify-content: center;
        align-items: center;
    }
    
    .footer-bottom-center {
        order: 2;
    }
    
    .footer-bottom-right {
        justify-content: center;
        order: 3;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .social-media-modern {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 25px;
    }
    
    .footer-middle {
        gap: 25px;
        margin-bottom: 25px;
    }
    
    .footer-bottom-navigation {
        gap: 15px;
    }
    
    .footer-bottom-title {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .footer-bottom-links a {
        font-size: 11px;
    }
    
    .social-link-modern {
        width: 40px;
        height: 40px;
    }
    
    .social-media-modern {
        gap: 12px;
    }
    
    .maps-container iframe {
        height: 200px;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 26, 29, 0.8) 0%, rgba(24, 26, 29, 0.6) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: fit-content;
    padding: 0 2rem;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    height: fit-content;
}

.about-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    width: fit-content;
    height: fit-content;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.about-logo img {
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.about-logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 24px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
    text-align: center;
    line-height: 1;
    transition: color 0.3s ease;
    margin-top: -0.5rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
}



/* About Story Section */
.about-story {
    padding: 80px 0;
    background-color: var(--text-white);
    color: var(--dark-bg);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text {
    padding-right: 2rem;
}

.about-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-content-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-bg);
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.about-quote {
    font-style: italic;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    padding: 1.2rem;
    background: rgba(220, 20, 60, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}

.about-story-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 900px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.about-story-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* About Mission Vision Section */
.about-mission-vision {
    padding: 100px 0;
    background-color: var(--light-bg);
    color: var(--dark-bg);
}

.about-mission-vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-mission-vision-image {
    order: 1;
}

.about-mission-vision-text {
    order: 2;
    padding-left: 2rem;
}

.about-mission-vision .about-section-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.mission-section {
    margin-bottom: 3rem;
}

.vision-section {
    margin-bottom: 1rem;
}

.mission-section p,
.vision-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-white);
    font-weight: 500;
    margin-bottom: 0;
}

.about-mission-vision-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    max-height: 900px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.about-mission-vision-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* About Principles Section */
.about-principles {
    padding: 100px 0;
    background-color: var(--text-white);
    color: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.about-principles-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-principles-header .about-section-title {
    color: var(--dark-bg);
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.principle-card {
    background: var(--text-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.principle-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.principle-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.principle-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-bg);
    opacity: 0.8;
}

.principle-card-centered {
    grid-column: 2;
    justify-self: center;
}

.about-principles-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.03;
}

.principles-logo {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    white-space: nowrap;
    letter-spacing: 0.1em;
}

/* About CTA Section */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-white);
    text-align: center;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.about-cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.about-cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.4);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 3rem;
    }
    
    .about-mission-content,
    .about-vision-content {
        gap: 3rem;
    }
    
    .about-principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .principles-logo {
        font-size: 6rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 500px;
    }
    
    .about-hero-title {
        font-size: 2.5rem;
    }
    
        .about-story,
    .about-mission-vision,
    .about-principles,
    .about-cta {
        padding: 60px 0;
    }

    .about-story-content,
    .about-mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-story-text {
        padding-right: 0;
        order: 2;
    }

    .about-story-image {
        order: 1;
    }

    .about-mission-vision-text {
        padding-left: 0;
        order: 1;
    }

    .about-mission-vision-image {
        order: 2;
    }
    
    .about-principles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-section-title {
        font-size: 2.2rem;
    }
    
    .about-cta-title {
        font-size: 2.5rem;
    }
    
    .principles-logo {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-logo img {
        width: 250px;
        height: 250px;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        pointer-events: none;
    }
    
    .about-logo-text {
        font-size: 18px;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }
    
    .about-story,
    .about-mission-vision,
    .about-principles,
    .about-cta {
        padding: 40px 0;
    }
    
    .about-section-title {
        font-size: 1.8rem;
    }
    
    .about-cta-title {
        font-size: 2rem;
    }
    
    .about-cta-description {
        font-size: 1rem;
    }
    
    .about-story-image img {
        max-width: 450px;
        max-height: 675px;
    }
    
    .principle-card {
        padding: 2rem 1.5rem;
    }
    
    .principles-logo {
        font-size: 3rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.contact-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contact-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: -1;
}

.contact-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 2rem;
}

.contact-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-description {
    font-size: 1.1rem;
    color: var(--text-white);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-section {
    background: var(--text-white);
    color: var(--dark-bg);
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Highlights */
.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.contact-highlight {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-bg);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.contact-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-hover));
    opacity: 0.25;
    transition: opacity 0.25s ease;
}

.contact-highlight:hover {
    border-color: rgba(216, 35, 5, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

.contact-highlight:hover::before { opacity: 0.9; }

.contact-highlight:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.20), 0 10px 24px rgba(0, 0, 0, 0.08);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(216, 35, 5, 0.10), rgba(216, 35, 5, 0.18));
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform 0.25s ease, background 0.25s ease;
}

.contact-highlight:hover .highlight-icon { transform: scale(1.06); }

.highlight-content { display: flex; flex-direction: column; }
.highlight-title { font-size: 0.8rem; font-weight: 700; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.08em; }
.highlight-text { font-size: 1.1rem; font-weight: 800; color: var(--darker-bg); }

@media (max-width: 1024px) {
    .contact-highlights { align-items: center; }
    .contact-highlight { width: 100%; max-width: 560px; }
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--text-white);
    color: var(--dark-bg);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

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

/* Checkbox Styles */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.form-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    background: var(--text-white);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-checkbox:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-white);
    font-size: 14px;
    font-weight: bold;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Error Messages */
.error-message {
    color: #dc2626;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    min-height: 1.2rem;
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc2626;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero .hero-title {
        font-size: 3rem;
    }
    
    .contact-hero .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .contact-hero .hero-description {
        font-size: 1rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero .hero-content {
        padding: 0 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
    }
    
    .submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ===== CARDIO PAGE STYLES ===== */

/* Products Section */
.products-section {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Product Card */
.product-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(216, 35, 5, 0.8));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image {
    transform: scale(1.05);
}

/* Bar page specific: prevent cropping inside product images */
.bar-products .product-image {
    height: 280px;
}

.bar-products .card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Product Content */
.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-code {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    text-transform: capitalize;;
    letter-spacing: 0.1em;
    background: rgba(216, 35, 5, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(216, 35, 5, 0.3);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    text-align: center;
    text-transform: capitalize;;
    letter-spacing: 0.05em;
}

.product-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Product Features */
.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.feature-tag {
    background: linear-gradient(135deg, var(--primary-color), rgba(216, 35, 5, 0.8));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.2;
}

.feature-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

/* Product Button */
.product-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), rgba(216, 35, 5, 0.8));
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: sticky;
    bottom: 30px;
    margin-top: auto;
    overflow: hidden;
}

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

.product-button:hover::before {
    left: 100%;
}

.product-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 20, 60, 0.4);
    background: linear-gradient(135deg, var(--primary-hover), #e74c3c);
}

/* Responsive Design for Products */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .product-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .products-grid {
        padding: 0 0.5rem;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.25rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .product-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Solutions Page Styles */
.solutions-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.solutions-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.solutions-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.solutions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 26, 29, 0.8) 0%, rgba(24, 26, 29, 0.6) 100%);
    z-index: 2;
}

.solutions-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: fit-content;
    padding: 0 2rem;
}

.solutions-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: fit-content;
    height: fit-content;
}

.solutions-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    width: fit-content;
    height: fit-content;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.solutions-logo img {
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    pointer-events: none;
}

.solutions-logo-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: 24px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-gray);
    text-align: center;
    line-height: 1;
    transition: color 0.3s ease;
    margin-top: -0.5rem;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.solutions-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-white);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
}

.solutions-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.05em;
    line-height: 1.4;
    margin: 0;
    max-width: 600px;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: var(--text-white);
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}









/* Inline Expansion - Simple & Clean */
.inline-expansion {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expansion-item {
    background: var(--text-white);
    border-radius: 15px;
    box-shadow: 0 6px 22.5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-bottom: 1.5rem;
    position: relative;
}

.expansion-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(38, 38, 38, 1);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.expansion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.expansion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 1.875rem;
    background: rgba(38, 38, 38, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-white);
}

.expansion-header:hover {
    background: rgba(48, 48, 48, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(38, 38, 38, 0.3);
    color: var(--text-white);
}

.expansion-header:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(38, 38, 38, 0.2);
}

.expansion-header.active {
    background: rgba(58, 58, 58, 1);
    transform: scale(0.98);
    transition: all 0.1s ease;
}

.expansion-icon {
    color: var(--text-white);
    margin-right: 1.125rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5625rem;
    border-radius: 50%;
    width: 37.5px;
    height: 37.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expansion-item:hover .expansion-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-white);
}

.expansion-content {
    flex: 1;
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.expansion-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 0 0 0.375rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}

.expansion-header:hover .expansion-title {
    color: var(--text-white);
}

.expansion-subtitle {
    font-size: 0.825rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.expansion-header:hover .expansion-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.expansion-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--text-white);
    cursor: pointer;
    padding: 0.75rem 1.125rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.675rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.expansion-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-white);
}

.expansion-toggle:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.expansion-toggle.active {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0.95);
    transition: all 0.1s ease;
}

.expansion-toggle svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.expansion-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.expansion-toggle[aria-expanded="true"] .toggle-text {
    content: "Detayları Gizle";
}

.expansion-details {
    display: none;
    background: var(--text-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.expansion-details[aria-hidden="false"] {
    display: block !important;
}

.details-content {
    padding: 1.875rem;
}

.details-description {
    margin-bottom: 1.875rem;
    padding: 1.125rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 9px;
    border-left: 3px solid rgba(38, 38, 38, 1);
}

.details-description p {
    font-size: 0.825rem;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 0;
    font-weight: 600;
}

.details-sections {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.875rem;
}

.details-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 13.5px;
    padding: 1.875rem;
    border: 2px solid rgba(216, 35, 5, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(38, 38, 38, 1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.details-section:hover::before {
    transform: scaleX(1);
}

.details-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(38, 38, 38, 0.3);
}

.section-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 1.125rem 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 1.875rem;
    font-size: 0.75rem;
    line-height: 1.6;
    color: #3a3a3a;
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.section-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: rgba(38, 38, 38, 1);
    font-weight: bold;
    font-size: 1rem;
    background: rgba(38, 38, 38, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-list li:hover {
    color: #3a3a3a;
}

.solution-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.solution-category {
    background: var(--text-white);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(216, 35, 5, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-category::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent rgba(38, 38, 38, 1) transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.solution-category:hover::after {
    opacity: 1;
}

.solution-category:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: rgba(38, 38, 38, 0.3);
}

.category-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solution-category p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    font-weight: 500;
}

.details-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(38, 38, 38, 1) 0%, rgba(38, 38, 38, 0.8) 100%);
    color: var(--text-white);
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(38, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(38, 38, 38, 0.8) 0%, rgba(38, 38, 38, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(38, 38, 38, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

/* Solutions CTA Section */
.solutions-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    color: var(--text-white);
    text-align: center;
}

.solutions-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.solutions-cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-cta-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.solutions-cta-button {
    display: inline-block;
    background: rgba(38, 38, 38, 1);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.solutions-cta-button:hover {
    background: rgba(38, 38, 38, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(38, 38, 38, 0.4);
}

/* Responsive Design for Solutions */
@media (max-width: 1024px) {
    .solutions-section-title {
        font-size: 2.5rem;
    }
    
    .solutions-hero-title {
        font-size: 3.5rem;
    }
    
    .inline-expansion {
        padding: 0 1.5rem;
    }
    
    .expansion-header {
        padding: 2rem;
    }
    
    .details-content {
        padding: 2.5rem;
    }
    
    .expansion-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 3rem 0;
    }
    
    .solutions-section-title {
        font-size: 2rem;
    }
    
    .solutions-section-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .solutions-hero-title {
        font-size: 2.5rem;
    }
    
    .solutions-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .solutions-logo img {
        width: 300px;
        height: 300px;
    }
    
    .solutions-cta-title {
        font-size: 2rem;
    }
    
    .inline-expansion {
        padding: 0 1rem;
    }
    
    .expansion-header {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .expansion-content {
        margin-right: 0;
        text-align: center;
    }
    
    .details-content {
        padding: 2rem;
    }
    
    .details-sections {
        gap: 2rem;
    }
    
    .details-section {
        padding: 2rem;
    }
    
    .solution-categories {
        gap: 1rem;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .solutions-section-title {
        font-size: 1.75rem;
    }
    
    .solutions-section-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .solutions-hero-title {
        font-size: 2rem;
    }
    
    .solutions-hero-subtitle {
        font-size: 1rem;
    }
    
    .solutions-logo img {
        width: 250px;
        height: 250px;
    }
    
    .solutions-cta-title {
        font-size: 1.75rem;
    }
    
    .solutions-cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .solutions-cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .inline-expansion {
        padding: 0 0.5rem;
    }
    
    .expansion-header {
        padding: 1.25rem;
    }
    
    .expansion-title {
        font-size: 1.4rem;
    }
    
    .expansion-subtitle {
        font-size: 1rem;
    }
    
    .details-content {
        padding: 1.5rem;
    }
    
    .details-section {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}

/* ===== CONSULTING PAGE STYLES ===== */

/* Hero CTA Section */
.hero-cta {
    margin-top: 2rem;
    text-align: center;
}

.hero-cta-text {
    font-size: 1.1rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* Why Choose Auron Section */
.why-auron-section {
    padding: 3rem 0 4rem 0;
    margin-bottom: -2rem;
    background: linear-gradient(135deg, rgba(24, 26, 29, 0.95) 0%, rgba(15, 15, 15, 0.95) 100%);
}

.why-auron-header {
    text-align: center;
    margin-bottom: 1rem;
}

.why-auron-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-auron-header .section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.benefit-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(216, 35, 5, 0.2);
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Packages Section */
.packages-section {
    padding: 3rem 0;
    margin-bottom: -2rem;
    background: var(--darker-bg);
}

.packages-header {
    text-align: center;
    margin-bottom: 1rem;
}

.packages-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.packages-header .section-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Grid */
.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(216, 35, 5, 0.2);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-header {
    margin-bottom: 1.5rem;
}

.package-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.3;
}

.package-subtitle {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.package-features {
    margin-bottom: 2rem;
}

.package-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

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

.package-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(216, 35, 5, 0.4);
    color: white;
}

/* Detailed Package Card Styles */
.detailed-package {
    grid-column: 1 / -1;
    max-width: 100%;
}

.package-title-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.package-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.package-left,
.package-right {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.package-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.equipment-list.detailed li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.quantity {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.package-download {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.download-link:hover {
    color: #60a5fa;
}

.download-icon {
    font-size: 1.1rem;
}

/* Responsive Design for Detailed Package */
@media (max-width: 768px) {
    .package-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-left,
    .package-right {
        padding: 1.25rem;
    }
    
    .equipment-list li {
        font-size: 0.9rem;
    }
    
    .equipment-list.detailed li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .package-title-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .package-left,
    .package-right {
        padding: 1rem;
    }
    
    .equipment-list li {
        font-size: 0.85rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Accordion Package Styles */
.accordion-package {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.accordion-package .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(24, 26, 29, 0.98) 100%);
    border-radius: 0 0 20px 20px;
    margin: 0 -3rem -3rem -3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.accordion-package.active .accordion-content {
    max-height: 3000px;
    opacity: 1;
    transform: translateY(0);
    padding: 2rem;
    border: 1px solid rgba(216, 35, 5, 0.3);
    border-top: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 1.5rem 2rem;
    margin: -2rem -2rem 0 -2rem;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.accordion-header:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
    transform: translateY(-2px);
}

.accordion-package.active .accordion-header {
    background: linear-gradient(135deg, rgba(216, 35, 5, 0.1) 0%, rgba(255, 107, 53, 0.05) 100%);
    border-bottom-color: rgba(216, 35, 5, 0.3);
}

.accordion-icon {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(216, 35, 5, 0.2);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.accordion-package.active .accordion-icon {
    transform: rotate(45deg);
    background: rgba(216, 35, 5, 0.2);
    box-shadow: 0 0 20px rgba(216, 35, 5, 0.3);
}

.accordion-package .package-content {
    padding: 0;
    position: relative;
}

.accordion-package .package-content-grid {
    margin-top: 0;
    position: relative;
}

/* Package Content Enhancement */
.package-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.package-left,
.package-right {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-left::before,
.package-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.package-left:hover::before,
.package-right:hover::before {
    transform: scaleX(1);
}

.package-left:hover,
.package-right:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(216, 35, 5, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.package-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Icon removed */

.package-separator {
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgba(255, 255, 255, 0.3) 100%);
    margin-bottom: 1.5rem;
    border-radius: 1px;
}

.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.equipment-list li:hover {
    background: rgba(216, 35, 5, 0.05);
    border-color: rgba(216, 35, 5, 0.2);
    transform: translateX(5px);
}

.equipment-list.detailed li {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.quantity {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(216, 35, 5, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(216, 35, 5, 0.2);
}

/* Package CTA Enhancement */
.package-cta {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.package-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.package-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: white;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(216, 35, 5, 0.3);
}

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

.package-button:hover::before {
    left: 100%;
}

.package-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(216, 35, 5, 0.5);
    color: white;
}

/* Package Image Section */
.package-image-section {
    margin: 3rem 0;
    text-align: center;
    position: relative;
}

.package-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid rgba(216, 35, 5, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.package-image:hover {
    transform: scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 45px rgba(216, 35, 5, 0.2);
}

.package-image-caption {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Design for Enhanced Accordion */
@media (max-width: 768px) {
    .packages-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .package-card {
        padding: 2rem;
    }
    
    .accordion-header {
        padding: 1.25rem 1.5rem;
        margin: -2rem -2rem 0 -2rem;
    }
    
    .accordion-package.active .accordion-content {
        padding: 1.5rem;
        margin: 0 -2rem -2rem -2rem;
    }
    
    .accordion-package .package-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .package-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-left,
    .package-right {
        padding: 1.5rem;
    }
    
    .package-image {
        height: 350px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .packages-grid {
        max-width: 100%;
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .accordion-header {
        padding: 1rem 1.25rem;
        margin: -1.25rem -1.25rem 0 -1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .accordion-package.active .accordion-content {
        padding: 1.25rem;
        margin: 0 -1.25rem -1.25rem -1.25rem;
    }
    
    .accordion-package .package-content {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .package-left,
    .package-right {
        padding: 1.25rem;
    }
    
    .equipment-list li {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .package-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .package-image {
        height: 300px;
        max-width: 100%;
    }
}

/* Detailed Sizes Section - Enhanced UI */
.detailed-sizes-section {
    padding: 4rem 0;
    margin-bottom: -2rem;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(24, 26, 29, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.detailed-sizes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.detailed-sizes-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.5) 50%, transparent 100%);
}

.detailed-sizes-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.detailed-sizes-header .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    background: linear-gradient(135deg, var(--text-white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Icon removed */

.detailed-sizes-header .section-description {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

.detailed-sizes-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.size-option {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.size-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #ff6b35 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.size-option:hover::before {
    transform: scaleX(1);
}

.size-option:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(216, 35, 5, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.size-option h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Icon removed */

.size-option p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.detailed-sizes-cta {
    text-align: center;
    position: relative;
}

.detailed-sizes-cta::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.detailed-sizes-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b35 100%);
    color: white;
    padding: 1.5rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(216, 35, 5, 0.3);
}

.detailed-sizes-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.detailed-sizes-button:hover::before {
    left: 100%;
}

.detailed-sizes-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px rgba(216, 35, 5, 0.5);
    color: white;
}

/* Responsive Design for Enhanced Detailed Sizes */
@media (max-width: 768px) {
    .detailed-sizes-section {
        padding: 3rem 0;
    }
    
    .detailed-sizes-header .section-title {
        font-size: 2.2rem;
    }
    
    /* Icon removed */
    
    .detailed-sizes-header .section-description {
        font-size: 1.1rem;
    }
    
    .size-options {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .size-option {
        padding: 2rem;
    }
    
    .size-option h3 {
        font-size: 1.3rem;
    }
    
    .size-option p {
        font-size: 1rem;
    }
    
    .detailed-sizes-button {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .detailed-sizes-section {
        padding: 2.5rem 0;
    }
    
    .detailed-sizes-header .section-title {
        font-size: 1.8rem;
    }
    
    /* Icon removed */
    
    .detailed-sizes-header .section-description {
        font-size: 1rem;
    }
    
    .size-options {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .size-option {
        padding: 1.75rem;
    }
    
    .size-option h3 {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .size-option p {
        font-size: 0.95rem;
    }
    
    .detailed-sizes-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

/* ===== MAINTENANCE SERVICES SECTION ===== */
.maintenance-services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.maintenance-services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.maintenance-services-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.maintenance-services-header .section-description {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.maintenance-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.maintenance-service-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.maintenance-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(255, 69, 0, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.maintenance-service-item:hover::before {
    opacity: 1;
}

.maintenance-service-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.3);
}

.maintenance-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.maintenance-service-icon svg {
    color: white;
    width: 40px;
    height: 40px;
}

.maintenance-service-content {
    position: relative;
    z-index: 2;
}

.maintenance-service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.maintenance-service-content p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.maintenance-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maintenance-features li {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.maintenance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.maintenance-services-cta {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.maintenance-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.maintenance-cta-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.maintenance-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.maintenance-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.maintenance-cta-button:hover::before {
    left: 100%;
}

.maintenance-cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 25px 50px rgba(220, 20, 60, 0.5);
    color: white;
}

/* Responsive Design for Maintenance Services */
@media (max-width: 768px) {
    .maintenance-services-section {
        padding: 3rem 0;
    }
    
    .maintenance-services-header .section-title {
        font-size: 2.2rem;
    }
    
    .maintenance-services-header .section-description {
        font-size: 1.1rem;
    }
    
    .maintenance-services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .maintenance-service-item {
        padding: 2rem;
    }
    
    .maintenance-service-icon {
        width: 60px;
        height: 60px;
    }
    
    .maintenance-service-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .maintenance-services-cta {
        padding: 2rem;
    }
    
    .maintenance-cta-content h3 {
        font-size: 1.6rem;
    }
    
    .maintenance-cta-content p {
        font-size: 1rem;
    }
    
    .maintenance-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .maintenance-services-section {
        padding: 2.5rem 0;
    }
    
    .maintenance-services-header .section-title {
        font-size: 1.8rem;
    }
    
    .maintenance-services-header .section-description {
        font-size: 1rem;
    }
    
    .maintenance-services-grid {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .maintenance-service-item {
        padding: 1.75rem;
    }
    
    .maintenance-service-content h3 {
        font-size: 1.3rem;
    }
    
    .maintenance-service-content p {
        font-size: 0.95rem;
    }
    
    .maintenance-features li {
        font-size: 0.9rem;
    }
    
    .maintenance-services-cta {
        padding: 1.5rem;
    }
    
    .maintenance-cta-content h3 {
        font-size: 1.4rem;
    }
    
    .maintenance-cta-content p {
        font-size: 0.95rem;
    }
    
    .maintenance-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR PRODUCTS SECTION ===== */
@media (max-width: 1024px) {
    .products-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        max-width: 500px;
        margin-bottom: 3rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .product-title {
        font-size: 1.3rem;
        margin-bottom: 0.625rem;
    }
    
    .product-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .product-card {
        border-radius: 14px;
    }
    
    .product-content {
        padding: 1rem;
    }
    
    .product-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .product-image {
        height: 160px;
    }
}

/* ===== RESPONSIVE DESIGN FOR CONTACT SECTION ===== */
@media (max-width: 1024px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        text-align: center;
    }
    
    .contact-info p {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .contact-highlights {
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .contact-highlight {
        width: 100%;
        max-width: 500px;
        padding: 0.875rem 1rem;
    }
    
    .highlight-icon {
        width: 40px;
        height: 40px;
    }
    
    .highlight-title {
        font-size: 0.75rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-highlights {
        gap: 1rem;
        margin-top: 1.25rem;
    }
    
    .contact-highlight {
        padding: 0.75rem 0.875rem;
    }
    
    .highlight-icon {
        width: 36px;
        height: 36px;
    }
    
    .highlight-title {
        font-size: 0.7rem;
    }
    
    .highlight-text {
        font-size: 0.95rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR ABOUT SECTIONS ===== */
@media (max-width: 1024px) {
    .about-story,
    .about-mission-vision,
    .about-principles {
        padding: 4rem 0;
    }
    
    .about-story-content,
    .about-mission-vision-content {
        gap: 3rem;
    }
    
    .about-section-title {
        font-size: 2.5rem;
    }
    
    .about-story-content-text p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-story,
    .about-mission-vision,
    .about-principles {
        padding: 3rem 0;
    }
    
    .about-story-content,
    .about-mission-vision-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .about-story-content-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-story-image img,
    .about-mission-vision-image img {
        max-width: 100%;
        height: auto;
    }
    
    .about-principles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-story,
    .about-mission-vision,
    .about-principles {
        padding: 2.5rem 0;
    }
    
    .about-story-content,
    .about-mission-vision-content {
        gap: 2rem;
    }
    
    .about-section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-story-content-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .about-principles-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR SOLUTIONS SECTION ===== */
@media (max-width: 1024px) {
    .solutions-section {
        padding: 4rem 0;
    }
    
    .solutions-section-title {
        font-size: 2.5rem;
    }
    
    .solutions-section-description {
        font-size: 1.1rem;
        max-width: 600px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 3rem 0;
    }
    
    .solutions-section-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .solutions-section-description {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .solutions-section {
        padding: 2.5rem 0;
    }
    
    .solutions-section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .solutions-section-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        padding: 0 0.75rem;
    }
    
    .solutions-grid {
        gap: 1.25rem;
    }
    
    .solution-card {
        padding: 1.25rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR INLINE EXPANSION ===== */
@media (max-width: 1024px) {
    .inline-expansion {
        padding: 0 1.5rem;
    }
    
    .expansion-item {
        margin-bottom: 1.25rem;
        border-radius: 12px;
    }
    
    .expansion-header {
        padding: 1.25rem 1.5rem;
    }
    
    .expansion-title {
        font-size: 1.25rem;
    }
    
    .expansion-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .inline-expansion {
        padding: 0 1rem;
    }
    
    .expansion-item {
        margin-bottom: 1rem;
        border-radius: 10px;
    }
    
    .expansion-header {
        padding: 1rem 1.25rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .expansion-content {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .expansion-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .expansion-subtitle {
        font-size: 0.9rem;
    }
    
    .expansion-toggle {
        align-self: flex-start;
        margin-top: 0.75rem;
    }
}

@media (max-width: 480px) {
    .inline-expansion {
        padding: 0 0.75rem;
    }
    
    .expansion-item {
        margin-bottom: 0.875rem;
        border-radius: 8px;
    }
    
    .expansion-header {
        padding: 0.875rem 1rem;
        gap: 0.5rem;
    }
    
    .expansion-title {
        font-size: 1.1rem;
        margin-bottom: 0.375rem;
    }
    
    .expansion-subtitle {
        font-size: 0.85rem;
    }
    
    .expansion-toggle {
        margin-top: 0.5rem;
        align-self: stretch;
    }
}

/* ===== RESPONSIVE DESIGN FOR EXPANSION DETAILS ===== */
@media (max-width: 768px) {
    .expansion-details {
        padding: 1rem 1.25rem;
    }
    
    .details-content {
        gap: 1.5rem;
    }
    
    .details-description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .details-sections {
        gap: 1.25rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .section-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .solution-categories {
        gap: 1rem;
    }
    
    .solution-category {
        padding: 1rem;
    }
    
    .category-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .solution-category p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .details-cta {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .expansion-details {
        padding: 0.875rem 1rem;
    }
    
    .details-content {
        gap: 1.25rem;
    }
    
    .details-description p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .details-sections {
        gap: 1rem;
    }
    
    .section-title {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }
    
    .section-list li {
        font-size: 0.85rem;
        margin-bottom: 0.375rem;
    }
    
    .solution-categories {
        gap: 0.875rem;
        grid-template-columns: 1fr;
    }
    
    .solution-category {
        padding: 0.875rem;
    }
    
    .category-title {
        font-size: 0.95rem;
        margin-bottom: 0.375rem;
    }
    
    .solution-category p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .details-cta {
        padding: 0.875rem;
        margin-top: 1.25rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR SOLUTIONS HERO ===== */
@media (max-width: 1024px) {
    .solutions-hero {
        min-height: 500px;
    }
    
    .solutions-hero-title {
        font-size: 3.5rem;
    }
    
    .solutions-hero-subtitle {
        font-size: 1.3rem;
        max-width: 500px;
    }
    
    .solutions-logo img {
        width: 350px;
        height: 350px;
    }
    
    .solutions-logo-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        min-height: 400px;
    }
    
    .solutions-hero-title {
        font-size: 2.5rem;
    }
    
    .solutions-hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .solutions-logo img {
        width: 280px;
        height: 280px;
    }
    
    .solutions-logo-text {
        font-size: 18px;
    }
    
    .solutions-hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .solutions-hero {
        min-height: 350px;
    }
    
    .solutions-hero-title {
        font-size: 2rem;
    }
    
    .solutions-hero-subtitle {
        font-size: 1rem;
        padding: 0 0.75rem;
    }
    
    .solutions-logo img {
        width: 220px;
        height: 220px;
    }
    
    .solutions-logo-text {
        font-size: 16px;
    }
    
    .solutions-hero-content {
        padding: 0 0.75rem;
    }
}

/* ===== RESPONSIVE DESIGN FOR CONSULTING SECTION ===== */
@media (max-width: 1024px) {
    .why-auron-section,
    .packages-section {
        padding: 2.5rem 0 3rem 0;
    }
    
    .why-auron-header .section-title,
    .packages-header .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .why-auron-header .section-description {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-auron-section,
    .packages-section {
        padding: 2rem 0 2.5rem 0;
    }
    
    .why-auron-header .section-title,
    .packages-header .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .why-auron-header .section-description {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .why-auron-section,
    .packages-section {
        padding: 1.5rem 0 2rem 0;
    }
    
    .why-auron-header .section-title,
    .packages-header .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .why-auron-header .section-description {
        font-size: 0.95rem;
        padding: 0 0.75rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
}

/* ===== RESPONSIVE UTILITY CLASSES ===== */
.hide-on-mobile {
    display: block;
}

.show-on-mobile {
    display: none;
}

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

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none;
    }
    
    .show-on-mobile {
        display: block;
    }
    
    .text-center-mobile {
        text-align: center;
    }
}

/* ===== RESPONSIVE SPACING ===== */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .section-padding-large {
        padding: 4rem 0;
    }
    
    .section-padding-small {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 2.5rem 0;
    }
    
    .section-padding-large {
        padding: 3rem 0;
    }
    
    .section-padding-small {
        padding: 1.5rem 0;
    }
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
    .responsive-title {
        font-size: 2rem;
    }
    
    .responsive-subtitle {
        font-size: 1rem;
    }
    
    .responsive-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .responsive-title {
        font-size: 1.8rem;
    }
    
    .responsive-subtitle {
        font-size: 0.95rem;
    }
    
    .responsive-text {
        font-size: 0.9rem;
    }
}
