/* =========================================
   CUSTOM FONTS
   ========================================= */

/* RF Dewi Extended Family */
@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/RFDewiExtended-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/RFDewiExtended-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/RFDewiExtended-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/RFDewiExtended-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/RFDewiExtended-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/RFDewiExtended-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Microgramma Extended D (For Headings) */
@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/fonnts.com-Microgramma_Extd_D_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'RF Dewi Extended';
    src: url('/assets/fonts/fonnts.com-Microgramma_Extd_D_Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* =========================================
   RESET AND BASE STYLES
   ========================================= */

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

body {
    font-family: 'RF Dewi Extended', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* GLOBAL CONTAINER (The 12-Column Guide) */
.container {
    width: 100%;
    max-width: 1200px;
    /* Matches Figma 12-col width */
    margin: 0 auto;
    /* Centers the container */
    padding: 0 20px;
    /* Gutters */
    height: 100%;
    /* For flex children */
}

/* Hero Section */
/* 1. HERO HEIGHT CALCULATION */
.hero {
    width: 100%;
    /* Key Change: Subtract Header Height (~160px) from viewport */
    height: calc(100vh - 160px);
    min-height: 600px;
    /* Safety for very small screens */
    background-color: #7C7C7B;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 20px;
    /* Small padding at bottom */
    transition: background-color 0.6s ease;
    /* Smooth color transition */
}

/* Red background for specific categories */
.hero.red-bg {
    background-color: #C00D0D;
}

/* HEADER LAYOUT */
/* =========================================
   1. HEADER SECTION (Rebuilt from Figma)
   ========================================= */

/* HEADER BASE */
.site-header {
    background-color: #7C7C7B;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.6s ease;
    /* Smooth color transition */
}

/* Red header background for specific categories */
body.red-header .site-header {
    background-color: #C00D0D;
}

/* Scrolled state - White background and black text */
.site-header.scrolled {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.site-header.scrolled .main-menu a {
    color: black !important;
}

.site-header.scrolled .top-contact-item {
    color: black !important;
}

.site-header.scrolled .top-contact-item i {
    color: black !important;
}

.site-header.scrolled .header-logo img {
    filter: brightness(0) !important;
}

.site-header.scrolled .mobile-menu-toggle {
    color: black !important;
}

.site-header.scrolled .mobile-menu-toggle i {
    color: black !important;
}

/* TOP BAR */
.header-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 15px 0;
}

.top-contact-wrapper {
    display: flex;
    justify-content: flex-end;
    /* Align to right */
    gap: 40px;
    /* Gap between phone and email */
}

.top-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.top-contact-item:hover {
    opacity: 1;
}

.top-contact-item i {
    color: white;
    /* Icons match text color */
    font-size: 14px;
}

/* MAIN BAR */
.header-main {
    padding: 25px 0;
    /* Vertical spacing for logo/nav */
}

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

.header-logo img {
    height: 30px;
    /* Adjust based on actual logo ratio */
    width: auto;
    display: block;
    transition: filter 0.6s ease;
    /* Smooth filter transition for color changes */
}

/* NAVIGATION LINKS */
.main-menu {
    display: flex;
    gap: 32px;
    /* Figma gap */
}

.main-menu a {
    color: white;
    text-decoration: none;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    /* Figma spec */
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: #C1151C;
    /* Hover effect */
}

/* HERO OPTICAL CENTERING */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
    width: 100%;
}

.hero-content .container {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    width: 100%;
    /* Ensure full width for proper centering */
    align-items: center;
    /* Center children horizontally */
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    /* Space between title, image sections */
    padding-bottom: 4vh;
}

/* Model Text Wrapper - Relative positioning for proper flex order */
.model-text-wrapper {
    position: relative;
    width: 100%;
    min-height: 100px;
    /* Reserve space for title */
    flex-shrink: 0;
    margin-bottom: 20px;
    /* Space between title and image */
}

/* Model Text */
.model-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(50px, 7.5vw, 180px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    text-align: center;
    word-wrap: break-word;
    transition: opacity 0.5s ease-in-out, transform 0.6s ease-in-out;
    flex-shrink: 0;
    margin: 0 auto;
    width: 100%;

    /* Use relative positioning for proper stacking */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;

    /* Hide by default, only show when active */
    opacity: 0;
    pointer-events: none;
}

.model-text.active {
    opacity: 1;
    pointer-events: auto;
}

/* 2. CRANE CONTAINER (Flex Adjustments) */
.crane-container {
    flex: 1;
    /* Take up all available remaining space */
    width: 100%;
    max-width: 1464px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center vertically in the available space */
    z-index: 1;
    overflow: visible;
    margin: 0;
    /* Remove negative margins that might cause overflow */
}

.crane-image-wrapper {
    width: 100%;
    height: 100%;
    /* Fill the flex container */
    display: flex;
    align-items: center;
    /* Center the image vertically */
    justify-content: center;
    position: relative;
}

/* 3. CRANE IMAGE SCALING (The Magic Fix) */
.crane-image {
    /* Key Change: Use VH instead of PX */
    max-height: 55vh;
    /* Occupy max 55% of the vertical space */
    max-width: 150%;
    width: auto;
    height: auto;
    object-fit: contain;
    position: absolute;
    /* Centering logic */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Center perfectly */
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, visibility 0s 0.6s;
    opacity: 0;
    z-index: 1;

    /* Hide by default, only show when active */
    visibility: hidden;
}

/* Keep animation states but ensure translate keeps centering */
.crane-image.slide-out-left {
    transform: translate(-150%, -50%);
    opacity: 0;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.crane-image.slide-in-right {
    transform: translate(150%, -50%);
    opacity: 0;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.crane-image.active {
    transform: translate(-50%, -50%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

/* TECHNICAL SPEC CARD (Overlay) */
.tech-card {
    position: absolute;
    bottom: 10%;
    /* Adjust vertical position */
    left: 10%;
    /* Moved to left side (was right: 10%) */
    z-index: 10;
    /* Higher than crane image (which is z-index: 1) */

    /* CRITICAL FIX: Ensures the sliding image is clipped to the card's boundaries */
    overflow: hidden;

    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    /* Shape & Borders */
    border-top-left-radius: 46px;
    border-bottom-right-radius: 46px;
    border: 1px solid rgba(255, 255, 255, 0.4);

    /* Layout */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;

    /* Animation (Optional: Fade in with slide) */
    animation: fadeInCard 1s ease-out forwards;
}

.tech-text {
    text-align: center;
    color: #333;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.tech-text span {
    font-weight: 700;
}


/* Tech Drawing Wrapper */
.tech-drawing-wrapper {
    position: relative;
    width: 200px;
    height: auto;
    min-height: 120px;
}

.tech-drawing {
    width: 200px;
    /* Adjust size as needed */
    height: auto;

    /* Multiply blend mode for blending over background */
    mix-blend-mode: multiply;

    /* Position absolute for stacking */
    position: absolute;
    top: 0;
    left: 0;

    /* Base positioning reset */
    transform: translateX(0%);

    /* Animation styles for synchronized transition */
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, filter 0.3s, visibility 0s 0.6s;
    opacity: 0;
    z-index: 1;

    /* Hide by default, only show when active */
    visibility: hidden;
}

/* Slide-out animations */
.tech-drawing.slide-out-left {
    transform: translateX(-150%);
    opacity: 0;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, filter 0.3s;
}

.tech-drawing.slide-out-right {
    transform: translateX(150%);
    opacity: 0;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, filter 0.3s;
}

/* Slide-in animations */
.tech-drawing.slide-in-right {
    transform: translateX(150%);
    opacity: 0;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, filter 0.3s;
}

.tech-drawing.active {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out, filter 0.3s;
}

.tech-drawing.slide-in-left {
    transform: translateX(-150%);
    opacity: 0;
    visibility: visible;
}

/* Active state (default position) */
.tech-drawing.active {
    transform: translateX(0%);
    opacity: 1;
}

.tech-divider {
    width: 40px;
    height: 3px;
    background-color: white;
    /* Or brand red #C1151C */
    border-radius: 2px;
}

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 4. NAV POSITIONING */
.category-nav {
    width: 100%;
    max-width: 1108px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    /* Don't squash the menu */
    padding: 0.25rem 0;
    margin: 0 auto 2vh auto;
    /* Use VH for dynamic bottom spacing */
    flex-wrap: wrap;
    z-index: 4;
}

.category-item {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: opacity 0.3s ease;
    flex: 1;
    min-width: fit-content;
}

.category-item:hover {
    opacity: 0.7;
}

.category-item.active span {
    font-weight: 700;
    opacity: 1;
}

.category-item span {
    color: white;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    display: block;
}

.category-divider {
    width: 1px;
    height: 14.38px;
    background: white;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .model-text {
        font-size: clamp(45px, 7.5vw, 140px);
    }

    .category-nav {
        gap: 0.5rem;
    }

    .category-item span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .header-top {
        padding: 10px 0;
    }

    .top-contact-wrapper {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-main {
        padding: 15px 0;
    }

    /* Note: main-nav-wrapper alignment is handled in the new responsive CSS section */
    /* This section keeps the old styles for backward compatibility */

    .main-menu {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-menu a {
        font-size: 12px;
    }

    /* Hide tech card on mobile to avoid clutter */
    .tech-card {
        display: none;
    }

    /* Mobile: Adjust model text positioning to avoid overlap */
    .model-text {
        font-size: clamp(40px, 10vw, 100px);
        top: 5%;
        /* Push title higher on mobile */
        z-index: 5;
        /* Ensure title is always above crane image */
    }

    /* Mobile: Reduce crane image size and ensure proper z-index */
    .crane-image {
        max-height: 20vh;
        /* Smaller on mobile to prevent overlap */
        z-index: 1;
        /* Below the title */
        top: 55%;
        /* Push image lower to create space */
    }

    /* Adjust crane container on mobile */
    .crane-container {
        margin-top: 60px;
        /* Add top margin to separate from title */
    }


    /* Mobile: Keep horizontal layout like desktop */
    .category-nav {
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0 10px;
        overflow-x: auto;
        /* Allow horizontal scroll if needed */
        -webkit-overflow-scrolling: touch;
    }

    /* Hide scrollbar but keep functionality */
    .category-nav::-webkit-scrollbar {
        display: none;
    }

    .category-divider {
        width: 1px;
        height: 14px;
        background: white;
        flex-shrink: 0;
    }

    .category-item {
        flex: 1;
        min-width: fit-content;
        padding: 8px 12px;
        white-space: nowrap;
    }

    .category-item span {
        font-size: 10px;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .top-contact-wrapper {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .top-contact-item {
        font-size: 11px;
    }

    .model-text {
        font-size: clamp(35px, 12vw, 70px);
    }

    .category-item span {
        font-size: 12px;
    }
}

/* Experience Section (Tecrübe) */
.experience-section {
    width: 100%;
    background-color: #7C7C7B;
    padding: 80px 0 0 0;
}

.experience-content {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.experience-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
}

.experience-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.experience-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 200px;
}

.experience-headline {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.experience-paragraph {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.experience-paragraph strong {
    font-weight: 700;
    color: white;
}

.experience-button {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.experience-button:hover {
    background: white;
    color: #7C7C7B;
}

/* Experience Section - Responsive */
@media (max-width: 968px) {
    .experience-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .experience-image {
        max-width: 70%;
        order: 1;
    }

    .experience-text {
        order: 2;
        text-align: left;
        padding-bottom: 40px;
    }

    .experience-button {
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .experience-section {
        padding: 60px 0 0 0;
    }

    .experience-content {
        gap: 32px;
        align-items: flex-start;
    }

    .experience-text {
        padding-bottom: 40px;
    }

    .experience-headline {
        font-size: clamp(32px, 4vw, 40px);
    }

    .experience-paragraph {
        font-size: 16px;
    }
}

/* =========================================
   THREE COLUMN SECTION
   ========================================= */

.three-column-section {
    width: 100%;
    background-color: #7C7C7B;
    padding: 80px 0;
}

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.column-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    transition: all 0.3s ease;
    min-height: 300px;
}

/* Card 1 - Right top and left bottom rounded */
.column-card:nth-child(1) {
    border-radius: 0 60px 0 60px;
}

/* Card 2 - Normal rectangle (no border-radius) */
.column-card:nth-child(2) {
    border-radius: 0;
}

/* Card 3 - Left top and right bottom rounded */
.column-card:nth-child(3) {
    border-radius: 60px 0 60px 0;
}

.column-card:hover {
    background: #C00D0D;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(192, 13, 13, 0.4);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-icon .material-symbols-outlined {
    font-size: 48px;
    color: white;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
}

.card-content h3 {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.3;
}

.card-content p {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Three Column Section - Responsive */
@media (max-width: 968px) {
    .three-column-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .column-card {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .three-column-section {
        padding: 60px 0;
    }

    .column-card {
        padding: 30px 20px;
        border-radius: 40px 40px 10px 10px;
    }

    .card-content h3 {
        font-size: 20px;
    }

    .card-content p {
        font-size: 14px;
    }
}

/* Timeline Section */
.timeline-section {
    width: 100%;
    background-color: #767676;
    padding: 60px 0;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}

.timeline-headline {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin: 0;
    flex: 0 0 auto;
}

.timeline-intro {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: right;
    flex: 1;
    max-width: 500px;
}

.timeline-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding-bottom: 0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    width: 100%;
    height: 100%;
    padding-top: 8vh;
    padding-bottom: 8vh;
}

/* Model Text Wrapper - Creates positioning context */
.model-text-wrapper {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    /* Reserve space for the tallest model text */
    min-height: clamp(55px, 8.25vw, 198px);
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: 25%;
    padding-bottom: 20px;
}

.timeline-image {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline-image img {
    height: 230px;
    width: auto;
    object-fit: contain;
    display: block;
    mix-blend-mode: color-dodge;
    transition: mix-blend-mode 0.3s ease;
}

.timeline-image img:hover {
    mix-blend-mode: plus-lighter;
}

.timeline-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 400;
    line-height: 1.5;
    color: white;
    text-align: center;
    margin-bottom: 0;
    flex: 1;
}

.timeline-text strong {
    font-weight: 700;
    color: white;
}





/* Timeline Section - Responsive */
@media (max-width: 968px) {
    .timeline-header {
        flex-direction: column;
        gap: 24px;
    }

    .timeline-intro {
        text-align: left;
        max-width: 100%;
    }

    .timeline-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .timeline-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }

    .timeline-header {
        margin-bottom: 40px;
    }

    .timeline-headline {
        font-size: 32px;
    }

    .timeline-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline-item {
        width: 100%;
    }

    .timeline-image img {
        height: 150px;
    }

    .timeline-text {
        font-size: 12px;
    }



}

/* Warranty Section (Garanti) */
.warranty-section {
    width: 100%;
    background-color: #C00D0D;
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.warranty-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding-top: 80px;
    z-index: 2;
}

.warranty-text {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
    position: relative;
}

.warranty-headline {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.warranty-paragraph {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.warranty-paragraph strong {
    font-weight: 700;
    color: white;
}

.warranty-button {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: white;
    background: transparent;
    border: 2px solid white;
    border-radius: 50px;
    padding: 14px 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 8px;
}

.warranty-button:hover {
    background: white;
    color: #C00D0D;
}

.warranty-image {
    position: absolute;
    right: 0 !important;
    top: calc(100px + 200px);
    transform: translateY(-50%);
    width: 50vw;
    max-width: none;
    height: 70%;
    max-height: 550px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.warranty-image img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
    display: block;
}

.warranty-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 80px;
}

.warranty-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.feature-icon {
    width: 100%;
    max-width: 80px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Warranty Section - White Icons */
.warranty-features .warranty-icon img {
    filter: brightness(0) invert(1);
    /* Makes SVG icons white */
}

.feature-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(14px, 1.2vw, 16px);
    font-weight: 300;
    line-height: 1.4;
    color: white;
    text-align: center;
}

/* Warranty Section - Responsive */
@media (max-width: 1600px) {
    .warranty-section {
        padding: 50px 0;
        overflow: visible;
    }

    .warranty-hero {
        min-height: auto;
        flex-direction: column;
        gap: 0;
        padding-top: 0;
    }

    .warranty-text {
        max-width: 100%;
        order: 2;
        margin-top: 40px;
    }

    .warranty-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        order: 1;
        justify-content: flex-end;
        margin-bottom: 0;
    }

    .warranty-image img {
        width: 100%;
        height: auto;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .warranty-section {
        padding: 40px 0;
        overflow: visible;
    }

    .warranty-hero {
        min-height: auto;
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
        padding-top: 0;
    }

    .warranty-text {
        max-width: 100%;
        order: 2;
        margin-top: 30px;
    }

    .warranty-headline {
        font-size: 32px;
    }

    .warranty-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: none;
        order: 1;
        justify-content: center;
        margin-bottom: 0;
    }

    .warranty-image img {
        width: 100%;
        height: auto;
    }

    .warranty-button {
        align-self: flex-start;
    }

    .warranty-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding-top: 40px;
    }

    .warranty-feature-item {
        width: 100%;
    }
}

/* Animated Hero Section - Enable Masking */
.animated-hero {
    position: relative;
    height: 600px;
    /* Full viewport minus header height (~95px) */
    width: 100%;
    overflow: hidden !important;
    /* Forces crane to stay inside */
    z-index: 1;
    background-color: #7C7C7B;
    color: white;
}

/* Layer 1: Sky Mask */
.hero-bg-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Sky Background with Pan Animation */
.sky-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background-size: cover;
    animation: skyMove 60s linear infinite;
}

@keyframes skyMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-20%);
    }
}

/* Animated Hero Container */
.animated-hero .container {
    position: relative;
    height: 100%;
}

/* Hero Text Content */
.hero-text-content {
    position: relative;
    z-index: 3;
    padding-top: 120px;
    max-width: 600px;
}

.hero-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: block;
}

.hero-text-content h1 {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(40px, 5vw, 96px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    text-transform: uppercase;
    margin: 0 0 24px 0;
}

.hero-text-content p {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin: 0;
}

/* Glassmorphism Badge - On Top & Overlapping */
.glass-badge {
    position: absolute;
    top: 100px;
    /* Adjust vertical alignment */
    right: 18%;
    /* Move right to overlap the crane */
    width: 220px;
    height: 220px;
    z-index: 10;
    /* Higher than crane */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ellipse-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 0.89px solid white;
    background: rgba(217, 217, 217, 0.24);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    z-index: 1;
}

.ellipse-inner {
    position: absolute;
    width: 70%;
    height: 70%;
    border: 0.89px solid white;
    background: rgba(217, 217, 217, 0.27);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    z-index: 2;
}

.badge-text {
    position: absolute;
    width: 90%;
    height: 90%;
    z-index: 3;
    animation: spinRing 20s linear infinite;
}

.badge-icon {
    position: absolute;
    width: 40%;
    height: 40%;
    z-index: 4;
    object-fit: contain;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Hanging Crane with Swing Animation */
/* Crane Wrapper - Aligned to Container Right */
.animated-hero .crane-wrapper {
    position: absolute;
    top: -5px;
    /* Starts inside the section */
    right: 0;
    /* Aligned to container right edge */
    width: auto;
    height: auto;
    max-width: 95vw !important;
    /* Increased from 90vw */
    max-height: 90vh !important;
    /* Increased from 80vh */
    z-index: 5;
    /* Lower than badge */
    transform-origin: top center;
    animation: craneSwing 6s ease-in-out infinite alternate;
    pointer-events: none;
    min-width: 650px !important;
    /* Increased from 450px */
    min-height: 400px !important;
    /* Increased from 300px */
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Crane Image - Larger Size */
.animated-hero .crane-image {
    max-width: 110vw !important;
    /* Increased from 100vw */
    max-height: 100vh !important;
    /* Increased from 90vh */
    width: auto;
    height: auto;
    visibility: visible !important;
    opacity: 1 !important;
    object-fit: contain !important;
}

@keyframes craneSwing {
    0% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(5deg);
    }
}

/* Animated Hero Section - Responsive */
@media (max-width: 968px) {
    .glass-badge {
        right: 5%;
        top: 60px;
        width: 200px;
        height: 200px;
    }

    .hero-text-content {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    .animated-hero {
        height: 500px;
    }

    .sky-bg {
        height: 120%;
    }

    .hero-text-content {
        padding-top: 40px;
        max-width: 100%;
    }

    .hero-icon {
        width: 40px;
        height: 40px;
    }

    .hero-text-content h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-text-content p {
        font-size: 14px;
        z-index: 3;
        position: relative;
    }

    .glass-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 30px auto 20px;
        width: 150px;
        height: 150px;
    }

    .badge-text {
        width: 90%;
        height: 90%;
    }

    .badge-icon {
        width: 50px;
        height: 50px;
    }

    .animated-hero .crane-wrapper {
        right: 0;
        bottom: 0;
        z-index: 1;
        min-width: 400px !important;
        min-height: 250px !important;
        max-width: none !important;
        max-height: none !important;
    }

    .animated-hero .crane-image {
        width: 400px;
        height: auto;
        min-width: 400px !important;
        max-width: none !important;
        max-height: none !important;
    }

    @keyframes craneSwing {
        0% {
            transform: rotate(-3deg);
        }

        100% {
            transform: rotate(3deg);
        }
    }
}

/* Statistics Section (İstatistik) */
.stats-section {
    width: 100%;
    background-color: #7C7C7B;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Red Wrapper (Monolithic Container) */
.stats-red-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 50vw;
    height: 235px;
    background-color: #C00D0D;
    border-bottom-left-radius: 60px;
    box-shadow: 4px 1px 69px rgba(215, 25, 32, 0.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 60px;
    z-index: 1;
}

.stats-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stats-headline {
    flex: 1;
}

.stats-headline h1 {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

/* Text Group Inside Red Wrapper */
.stats-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.stat-large {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin: 0;
}

.stats-text-group .stat-label {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    opacity: 0.70;
    margin: 0;
}

.stats-divider {
    width: 100%;
    height: 1px;
    background-color: white;
    border: none;
    margin: 60px 0;
    opacity: 0.3;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item:first-child {
    text-align: left;
}

.stat-item:nth-child(2) {
    text-align: center;
}

.stat-item:last-child {
    text-align: right;
}

.stat-number {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
}

.stat-item .stat-label {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    opacity: 0.70;
}

/* Statistics Section - Responsive */
/* Stats Section - Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .stats-red-wrapper {
        width: 55vw;
        height: 220px;
        padding-left: 50px;
    }

    .stats-headline h1 {
        font-size: 36px;
    }

    .stat-large {
        font-size: 42px;
    }
}

/* Stats Section - Tablets */
@media (max-width: 1000px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-red-wrapper {
        width: 65vw;
        height: 200px;
        padding-left: 40px;
        border-bottom-left-radius: 50px;
    }

    .stats-headline h1 {
        font-size: 32px;
    }

    .stat-large {
        font-size: 38px;
    }

    .stat-label {
        font-size: 14px;
    }

    .stats-grid {
        gap: 25px;
    }
}

/* Stats Section - Small Tablets and Below */
@media (max-width: 1100px) {
    .stats-header {
        flex-direction: column;
        gap: 30px;
    }

    .stats-red-wrapper {
        position: relative;
        width: 100%;
        height: 180px;
        padding-left: 35px;
        padding-top: 20px;
        border-bottom-left-radius: 40px;
        margin-bottom: 40px;
    }

    .stats-text-group {
        gap: 8px;
    }

    .stats-grid {
        flex-wrap: wrap;
        gap: 25px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12.5px);
    }
}

/* Stats Section - Mobile */
@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }

    .stats-headline {
        display: none;
    }

    .stats-red-wrapper {
        position: relative;
        width: 100%;
        height: 180px;
        border-bottom-left-radius: 30px;
        padding-left: 30px;
        padding-top: 20px;
        margin-bottom: 30px;
    }

    .stats-text-group {
        gap: 6px;
    }

    .stat-large {
        font-size: 28px;
    }

    .stats-text-group .stat-label {
        font-size: 15px;
    }

    .stats-divider {
        margin: 40px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }

    .stat-item {
        width: 100%;
        text-align: left !important;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-item .stat-label {
        font-size: 16px;
    }
}

/* =========================================
   8. NEWS SECTION (HABERLER)
   ========================================= */

.news-section {
    width: 100%;
    background-color: #7C7C7B;
    padding: 80px 0;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.news-header h2 {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.news-view-all {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.news-view-all:hover {
    opacity: 0.8;
}

.news-view-all img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    height: 100%;
    /* Ensure consistent height in grid */
}

.news-img {
    width: 100%;
    height: 200px;
    /* Slightly taller for better proportions */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.news-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.news-desc {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    opacity: 0.7;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
}

.news-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 15px;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    width: fit-content;
    transition: background-color 0.3s, color 0.3s;
}

.news-read-btn:hover {
    background-color: white;
    color: #7C7C7B;
}

.btn-arrow {
    font-size: 16px;
    line-height: 1;
}

/* News Section - Responsive */
@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

    .news-header h2 {
        font-size: 32px;
    }

    .news-view-all {
        font-size: 16px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-title {
        font-size: 18px;
    }

    .news-desc {
        font-size: 14px;
    }
}

/* =========================================
   9. GALLERY SECTION (GALERİ)
   ========================================= */

.gallery-section {
    background-color: #7C7C7B;
    padding: 80px 0;
    overflow: hidden;
    /* Hide overflow */
}

.gallery-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    text-align: left;
    /* Aligns with grid */
    margin: 0 0 50px 0;
}

/* MARQUEE WRAPPER */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    /* Crucial */
    position: relative;
    padding: 20px 0;
}

/* MARQUEE TRACK (The Moving Part) */
.marquee-track {
    display: flex;
    width: max-content;
    /* Fit content exactly */
    gap: 20px;
    /* Space between images */
    animation: scroll 30s linear infinite;
    /* Smooth continuous scroll */
}

/* INDIVIDUAL ITEMS */
.marquee-item {
    flex: 0 0 auto;
    width: 450px;
    /* Fixed robust width */
    height: 350px;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    /* Sharp edges */
    filter: grayscale(20%);
    /* Slight modern touch */
    transition: all 0.3s ease;
}

/* HOVER EFFECTS (Modern Interaction) */
.marquee-item:hover {
    transform: scale(1.05);
    /* Slight pop */
    z-index: 10;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Pause animation on hover for better UX */
.marquee-track:hover {
    animation-play-state: paused;
}

/* THE ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move exactly 50% if we duplicated items, or calculate based on item width */
        /* Logic: Move by (Width + Gap) * Number of Unique Items */
        transform: translateX(calc(-1 * (450px + 20px) * 5));
    }
}

/* Gallery Section - Responsive */
@media (max-width: 968px) {
    .gallery-title {
        font-size: 40px;
    }

    .marquee-item {
        width: 350px;
        height: 280px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-1 * (350px + 20px) * 5));
        }
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .marquee-wrapper {
        padding: 15px 0;
    }

    .marquee-item {
        width: 280px;
        height: 220px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-1 * (280px + 20px) * 5));
        }
    }
}

/* =========================================
   8. FOOTER SECTION
   ========================================= */

.main-footer {
    background-color: #787878;
    border-top: 5px solid #7C7C7B;
    padding: 80px 0 30px;
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    /* 4 Columns */
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* 1. HEADINGS (Figma: 21px, 600 weight) */
.footer-col h3 {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    text-transform: capitalize;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}

/* BADGE CONTAINER FOR FOOTER */
.footer-badge-container {
    width: 220px;
    /* Same width as original badge to prevent overlap issues */
    height: 150px;
    /* Adjusted height to fit the scaled version */
    position: relative;
    margin-top: 20px;
    margin-bottom: -40px;
    /* Negative margin pulls the text up because scale() leaves empty space */
}

/* Target the badge INSIDE the footer only - Use scale() without breaking internal structure */
.footer-badge-container .glass-badge {
    position: absolute;
    top: 0;
    left: 0;
    /* THE MAGIC FIX: Scale it down perfectly without breaking rotation origin */
    transform: scale(0.65);
    /* Anchor it to the top-left corner so it doesn't float away */
    transform-origin: top left;
    /* Keep all original properties intact */
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.footer-desc {
    opacity: 0.7;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    color: white;
}

.footer-certs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-certs img {
    height: 80px;
    width: auto;
    opacity: 0.8;
}

/* 2. MENU LINKS (Figma: 14px, Light, 37px Line Height) */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0;
    /* Line-height handles spacing */
}

.footer-links li a {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.70;
    color: white;
    text-decoration: none;
    line-height: 37px;
    /* Creates the specific spacing */
    display: block;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    opacity: 1;
    color: #C1151C;
    /* Brand Red */
}

/* CONTACT SECTION FIX */

/* 1. The List Container */
.contact-info {
    display: flex;
    flex-direction: column;
    /* Strictly stack items vertically */
    gap: 24px;
    /* Space between Address, Phone, Email blocks */

    /* CRITICAL FIXES FOR ALIGNMENT: */
    list-style: none;
    padding: 0 !important;
    /* Removes default indentation */
    margin: 0 !important;
    align-items: flex-start;
    /* Forces content to stick to the left */
    width: 100%;
}

/* 2. The Text Items (Figma Specs) */
.contact-info li {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    font-weight: 300;
    /* Light font weight */
    color: white;
    opacity: 0.70;

    line-height: 1.6;
    /* Comfortable reading height for address */
    text-align: left;
    /* Ensure text itself is left-aligned */
    white-space: pre-line;
    /* Allows <br> to work if used in HTML */
    width: 100%;
}

/* Optional: Hover effect for contact items if they are links */
.contact-info li a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-info li a:hover {
    opacity: 1;
}

.contact-col h3 {
    margin-top: 30px;
}

.contact-col h3:first-child {
    margin-top: 0;
}

/* Ensure contact-info doesn't have extra bottom margin */
.contact-col .contact-info {
    margin-bottom: 0;
}

/* SOCIAL MEDIA ICONS */
.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0 30px 0;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: rgba(193, 21, 28, 0.8);
    transform: translateY(-3px);
}

.social-icons img,
.social-icons svg {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icons a:hover img,
.social-icons a:hover svg {
    opacity: 1;
}

.social-icons svg {
    color: white;
}

/* NEWSLETTER */
.newsletter-area {
    margin-top: 30px;
}

.newsletter-area h3 {
    margin-bottom: 10px;
}

.newsletter-area p {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 15px;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    color: white;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    flex-grow: 1;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    background: #C1151C;
    color: white;
    border: none;
    padding: 12px 25px;
    font-family: 'RF Dewi Extended', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #a01015;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 21, 28, 0.4);
}

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 13px;
    opacity: 0.6;
    line-height: 1.5;
    color: white;
}

.copyright span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

.adshub-logo {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.adshub-logo:hover {
    opacity: 1;
}

/* Footer Section - Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

    .contact-col {
        grid-column: 1 / -1;
        /* Full width on tablet */
    }
}

@media (max-width: 768px) {

    /* MOBILE FOOTER - COMPACT VERSION */
    .main-footer {
        padding: 40px 0 20px;
        /* Reduced from 60px/30px */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        /* Reduced from 40px */
        margin-bottom: 30px;
        /* Reduced from 60px */
    }

    /* Hide brand column (logo, badge, description, certs) on mobile */
    .footer-col.brand-col {
        display: none !important;
    }

    /* Hide all footer columns except contact-col on mobile */
    .footer-col:not(.contact-col) {
        display: none !important;
    }

    /* Ensure contact column is visible */
    .footer-col.contact-col {
        display: flex !important;
    }

    /* Smaller headings */
    .footer-col h3 {
        font-size: 18px;
        /* Reduced from 21px */
        margin-bottom: 15px;
        /* Reduced from 24px */
    }

    /* Compact links */
    .footer-links li a {
        font-size: 13px;
        /* Reduced from 14px */
        line-height: 28px;
        /* Reduced from 37px */
    }

    /* Compact contact info */
    .contact-info {
        gap: 15px;
        /* Reduced from 24px */
    }

    .contact-info li {
        font-size: 13px;
        /* Reduced from 14px */
    }

    /* Smaller social icons */
    .social-icons {
        gap: 10px;
        /* Tighter spacing */
    }

    .social-icons a svg {
        width: 20px;
        /* Reduced from 24px */
        height: 20px;
    }

    /* Compact newsletter */
    .newsletter-area {
        margin-top: 20px;
    }

    .newsletter-area h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .newsletter-area p {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        font-size: 14px;
        padding: 10px 15px;
    }

    .newsletter-form button {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    /* Compact footer bottom */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
        /* Reduced from 30px */
        gap: 15px;
    }

    .copyright {
        font-size: 12px;
        line-height: 1.5;
    }

    .copyright span {
        display: block;
        margin-top: 5px;
        font-size: 11px;
    }

    .adshub-logo {
        max-width: 100px;
        height: auto;
    }

    .contact-col {
        grid-column: 1;
    }
}

/* =========================================
   9. SUBPAGE LAYOUT SYSTEM
   ========================================= */

/* SUBPAGE LAYOUT SYSTEM */
.subpage-content {
    background-color: #7C7C7B;
    /* Match header/hero bg for seamless look */
    padding-top: 60px;
    /* THE REQUESTED 60PX GAP */
    min-height: 80vh;
}

/* PRODUCT HERO SECTION */
.product-hero {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #7C7C7B;
}

.hero-visuals {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    /* Fixed height area for visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
}

.big-model-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 18vw;
    /* Responsive Huge Text */
    font-weight: 800;
    color: white;
    text-align: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    white-space: nowrap;
    opacity: 1;
    /* Make sure it's visible */
}

/* Adjust text size for very large screens so it doesn't break layout */
@media (min-width: 1600px) {
    .big-model-text {
        font-size: 280px;
    }
}

.product-hero-img {
    position: relative;
    z-index: 2;
    /* Sits on top of text */
    max-width: 150%;
    max-height: 500px;
    width: auto;
    object-fit: contain;
    /* Drop shadow to pop from text */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* Product Hero - Responsive */
@media (max-width: 768px) {
    .product-hero {
        padding-bottom: 60px;
    }

    .hero-visuals {
        height: 500px;
    }

    .big-model-text {
        font-size: 15vw;
    }

    .product-hero-img {
        max-width: 90%;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-visuals {
        height: 400px;
    }

    .big-model-text {
        font-size: 12vw;
    }

    .product-hero-img {
        max-height: 300px;
    }
}

/* =========================================
   10. PRODUCT FEATURES SECTION
   ========================================= */

/* FEATURES SECTION */
.product-features {
    background-color: white;
    padding: 60px 0;
    width: 100%;
}

.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    /* Space between the two main columns */
    flex-wrap: wrap;
}

.features-col {
    flex: 1;
    min-width: 300px;
}

/* Titles */
.features-title {
    color: #7C7C7B;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-title i {
    font-size: 20px;
    /* Icon size for Optional header */
}

/* Icons Grid */
.icons-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Space between icons */
    flex-wrap: wrap;
}

/* Individual Feature Item & Tooltip Logic */
.feature-item {
    position: relative;
    /* Anchor for absolute tooltip */
    cursor: pointer;
    transition: transform 0.2s;
}

.feature-item img {
    height: 50px;
    /* Fixed height based on Figma */
    width: auto;
    object-fit: contain;
    display: block;
    opacity: 0.8;
    transition: opacity 0.3s, transform 0.3s;
}

.feature-item:hover img {
    opacity: 1;
    transform: scale(1.1);
    /* Subtle pop effect */
}

/* THE TOOLTIP */
.tooltip-text {
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 4px;
    white-space: nowrap;

    /* Position */
    position: absolute;
    bottom: 120%;
    /* Sits above the icon */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    /* Start slightly down */
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;

    /* Small arrow pointing down */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show Tooltip on Hover */
.feature-item:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    /* Float up to position */
}

/* Product Features - Responsive */
@media (max-width: 768px) {
    .product-features {
        padding: 40px 0;
    }

    .features-wrapper {
        gap: 40px;
        flex-direction: column;
    }

    .features-col {
        min-width: 100%;
    }

    .icons-grid {
        gap: 20px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .features-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .icons-grid {
        gap: 15px;
    }

    .feature-item img {
        height: 40px;
    }
}

/* =========================================
   11. TECHNICAL DETAILS SECTION
   ========================================= */

/* TECHNICAL DETAILS SECTION */
.tech-details-section {
    background-color: #F1F1F1;
    padding: 100px 0;
    width: 100%;
}

.tech-details-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Vertically center the content */
    gap: 100px;
    /* Large gap between name and table */
    flex-wrap: wrap;
}

/* LEFT COLUMN */
.tech-info-col {
    flex: 0 0 auto;
    max-width: 400px;
}

.tech-model-name {
    font-family: 'RF Dewi Extended', sans-serif;
    /* Fallback to sans-serif if not loaded */
    font-size: 48px;
    /* Slightly larger for impact */
    font-weight: 700;
    color: #7C7C7B;
    margin-bottom: 20px;
    line-height: 1.1;
}

.tech-category-path {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #7C7C7B;
    line-height: 1.5;
}

/* RIGHT COLUMN (Table) */
.tech-specs-col {
    flex: 1;
    min-width: 350px;
    /* Ensure it doesn't get too small */
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(124, 124, 123, 0.20);

    /* Typography */
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 18px;
    /* Adjusted for web readability */
    font-weight: 600;
    color: #7C7C7B;
}

.spec-row.dimmed {
    opacity: 0.70;
}

.spec-row.no-border {
    border-bottom: none;
}

.spec-label {
    flex: 1;
    text-transform: uppercase;
}

.spec-value {
    flex: 0 0 auto;
    margin-left: 20px;
    font-weight: 700;
    text-align: right;
}

/* Technical Details - Responsive */
@media (max-width: 992px) {
    .tech-details-section {
        padding: 60px 0;
    }

    .tech-details-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .tech-info-col,
    .tech-specs-col {
        width: 100%;
        max-width: 100%;
    }

    .tech-model-name {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .tech-details-section {
        padding: 40px 0;
    }

    .tech-model-name {
        font-size: 32px;
    }

    .tech-category-path {
        font-size: 16px;
    }

    .spec-row {
        font-size: 14px;
        /* Smaller text on mobile */
        padding: 14px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .spec-value {
        margin-left: 0;
        text-align: left;
    }
}

/* =========================================
   12. KEY TECHNICAL FEATURES SECTION
   ========================================= */

/* KEY TECHNICAL FEATURES SECTION */
.key-features-section {
    background-color: white;
    padding: 60px 0 100px;
    width: 100%;
}

.key-features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
    /* Ensure items start at the top */
}

.key-feature-item {
    flex: 1;
    /* Equal width for all 4 items */
    min-width: 200px;
    /* Ensure they don't crush each other */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Icon Container */
.feature-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon-box i {
    font-size: 32px;
    color: #7C7C7B;
    /* Icon color */
}

/* SVG Icon Styling */
.feature-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Text Styling */
.feature-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 18px;
    /* Adjusted from 20px for better fit */
    font-weight: 300;
    line-height: 1.2;
    color: #ffffff;
    opacity: 0.70;
    /* Dimmed text */
}

/* Text Styling */
.about-feature-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 18px;
    /* Adjusted from 20px for better fit */
    font-weight: 300;
    line-height: 1.2;
    color: #7C7C7B;
    opacity: 0.70;
    /* Dimmed text */
}

/* Key Features - Responsive */
@media (max-width: 992px) {
    .key-features-grid {
        gap: 40px;
    }

    .key-feature-item {
        flex: 0 0 calc(50% - 20px);
        /* 2 columns on tablet */
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .key-features-section {
        padding: 40px 0 60px;
    }

    .key-features-grid {
        gap: 30px;
        flex-direction: column;
    }

    .key-feature-item {
        flex: 1;
        width: 100%;
        min-width: 100%;
    }

    .feature-text {
        font-size: 16px;
    }
}

/* =========================================
   13. CONTACT PAGE - MAP SECTION
   ========================================= */

/* CONTACT PAGE - MAP SECTION */
.map-section {
    width: 100%;
    /* Full Width */
    /* Kaldırılan 60px padding-top'u, haritanın arka planı şık dursun diye sadece ilk bölümden kaldırıyoruz */
    margin-top: -60px;
}

.map-placeholder {
    width: 100%;
    /* Full Width */
    height: 540px;
    /* Requested fixed height */
    background-color: #ccc;
    /* Placeholder color before map loads */
    border: none;
    position: relative;
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map Section - Responsive */
@media (max-width: 768px) {
    .map-placeholder {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .map-placeholder {
        height: 300px;
    }
}

/* =========================================
   14. CONTACT FORM SECTION
   ========================================= */

/* CONTACT FORM SECTION */
.contact-form-section {
    background-color: #7C7C7B;
    padding: 80px 0 100px;
    color: white;
}

.contact-form-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1;
    min-width: 400px;
    max-width: 450px;
}

.contact-form-col {
    flex: 1;
    min-width: 450px;
}

/* LEFT COLUMN TYPOGRAPHY */
.contact-main-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.contact-desc {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 30px;
    color: white;
}

.contact-desc .desc-light {
    opacity: 0.8;
    font-weight: 400;
}

.contact-desc .desc-bold {
    opacity: 0.8;
    font-weight: 700;
}

.contact-details p {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: white;
}

.contact-details .detail-label {
    font-weight: 800;
    /* Bold */
}

.contact-details span:not(.detail-label) {
    font-weight: 300;
    /* Light */
}

/* RIGHT COLUMN - FORM STYLING */
.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-contact-form label {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
    color: white;
    margin-bottom: 0;
    display: block;
}

.main-contact-form input[type="text"],
.main-contact-form input[type="email"] {
    width: 100%;
    padding: 15px 12px;
    background: rgba(255, 255, 255, 0.10);
    /* Semi-transparent background */
    border: none;
    color: white;
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 16px;
    margin-top: 16px;
    /* Space between label and input */
    transition: background-color 0.3s;
}

.main-contact-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.main-contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    /* Dim placeholder */
    font-size: 14px;
}

/* SUBMIT BUTTON (Pill Shape) */
.submit-button {
    align-self: flex-start;
    /* Aligns button to the left */
    padding: 18px 24px;
    background: transparent;
    border-radius: 71.42px;
    /* Pill shape */
    border: 2px solid white;
    color: white;
    font-size: 16px;
    font-family: 'RF Dewi Extended', sans-serif;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

.submit-button:hover {
    background-color: #C1151C;
    /* Brand Red hover effect */
    border-color: #C1151C;
}

.submit-button i {
    transform: rotate(-45deg);
    /* Match Figma icon style (arrow) */
}

/* Contact Form - Responsive */
@media (max-width: 992px) {
    .contact-form-section {
        padding: 60px 0 80px;
    }

    .contact-form-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-info-col,
    .contact-form-col {
        min-width: 100%;
        max-width: 100%;
    }

    .contact-main-title {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .contact-form-section {
        padding: 40px 0 60px;
    }

    .contact-main-title {
        font-size: 32px;
    }

    .contact-desc {
        font-size: 18px;
    }

    .main-contact-form {
        gap: 20px;
    }

    .main-contact-form label {
        font-size: 14px;
    }

    .main-contact-form input[type="text"],
    .main-contact-form input[type="email"] {
        padding: 12px 10px;
        font-size: 14px;
    }

    .submit-button {
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* =========================================
   15. ABOUT PAGE LAYOUT
   ========================================= */

/* ABOUT PAGE LAYOUT */
/* Remove padding from subpage content for full bleed image */
.subpage-content {
    padding-top: 0;
    /* Remove padding from subpage content entirely */
}

.about-hero-image-section {
    width: 100%;
    height: 90vh;
    min-height: 800px;
    position: relative;
    /* Ensure no background peek */
    background-color: #7C7C7B;
    padding: 0;
    margin: 0;
}

/* VISUALS WRAPPER (FOR FULL BLEED) */
.about-visuals-wrapper {
    position: relative;
    width: 100%;
    /* Spans full width */
    height: 100%;
    /* Fills parent section */
    overflow: hidden;
}

/* MAIN IMAGE (COVERS THE ENTIRE WRAPPER) */
.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* CRITICAL: Ensures the image covers the area without white gaps */
    object-position: top center;
    display: block;
}

/* GLASS BADGE OVERLAY (Positioned relative to the Visuals Wrapper) */
.about-glass-badge-wrapper {
    position: absolute;
    /* Adjust position to be at the bottom right of the VISIBLE image area */
    bottom: 50px;
    right: 50px;
    z-index: 10;
}

/* Applying the scale to the Hero Badge to reach 258px size */
.glass-badge.about-version {
    /* Assuming the original badge is approx 220px, we scale up. 
       Scale factor: 258/220 = 1.17 */
    transform: scale(1.17);
    transform-origin: bottom right;
    /* Pin the transformation to the bottom right corner */
    position: absolute !important;
    top: auto !important;
    left: auto !important;
    right: 0;
    bottom: 0;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About Hero Image - Responsive */
@media (max-width: 992px) {
    .about-hero-image-section {
        height: 70vh;
        min-height: 600px;
    }

    .about-glass-badge-wrapper {
        bottom: 30px;
        right: 30px;
    }

    .glass-badge.about-version {
        transform: scale(1.0);
    }
}

@media (max-width: 768px) {
    .about-hero-image-section {
        height: 60vh;
        min-height: 500px;
    }

    .about-glass-badge-wrapper {
        bottom: 20px;
        right: 20px;
    }

    .glass-badge.about-version {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    .about-hero-image-section {
        height: 50vh;
        min-height: 400px;
    }

    .about-glass-badge-wrapper {
        bottom: 15px;
        right: 15px;
    }

    .glass-badge.about-version {
        transform: scale(0.6);
    }
}

/* =========================================
   16. ABOUT PAGE - PHILOSOPHY SECTION
   ========================================= */

/* ABOUT PAGE - PHILOSOPHY SECTION */
.about-philosophy-section {
    background-color: #767676;
    /* Dark Gray background */
    padding: 80px 0 100px;
    color: white;
    position: relative;
    z-index: 1;
    /* Ensure it sits on top of any overlapping sections */
}

.philosophy-header {
    margin-bottom: 60px;
}

.philosophy-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 36px;
    color: white;
}

.philosophy-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 300;
    /* Light weight */
    line-height: 1.4;
    color: white;
    opacity: 0.70;
    max-width: 800px;
    /* Limits the line length for readability */
}

/* 4 FEATURE CARDS GRID (Similar to Product Detail Features) */
.philosophy-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* Responsive grid */
    gap: 15px;
    /* Figma Gap */
    margin-top: 50px;
}

.philosophy-card {
    background: rgba(255, 255, 255, 0.05);
    /* Semi-transparent background */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 18px;
    /* Gap between icon and text */
    min-height: 200px;
    transition: background-color 0.3s;
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.1);
    /* Slight highlight on hover */
}

.card-icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon-box i {
    font-size: 30px;
    color: white;
    /* White icons */
}

/* SVG Icon Styling for Philosophy Section - White */
.card-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
    /* Makes SVG icons white */
}

.card-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    opacity: 0.70;
}

/* Philosophy Section - Responsive */
@media (max-width: 992px) {
    .about-philosophy-section {
        padding: 60px 0 80px;
    }

    .philosophy-title {
        font-size: 40px;
    }

    .philosophy-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .philosophy-header {
        margin-bottom: 40px;
    }

    .philosophy-title {
        font-size: 36px;
    }

    .philosophy-text {
        font-size: 18px;
    }

    .philosophy-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .about-philosophy-section {
        padding: 40px 0 60px;
    }

    .philosophy-title {
        font-size: 32px;
    }

    .philosophy-text {
        font-size: 16px;
    }

    .philosophy-card {
        padding: 25px;
        min-height: 180px;
    }

    .card-text {
        font-size: 16px;
    }
}

/* =========================================
   17. TEAM IMAGE AND STATISTICS SECTION
   ========================================= */

/* TEAM IMAGE AND STATISTICS SECTION */
.team-stats-section {
    width: 100%;
}

/* 1. IMAGE (Full Width) */
.team-image-wrapper {
    width: 100%;
    overflow: hidden;
    /* Use the exact height from Figma to maintain aspect ratio */
    height: 691px;
    position: relative;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 2. STATS BLOCK (Red Background) */
.stats-block {
    background-color: #C00D0D;
    /* Brand Red */
    padding: 80px 0;
    color: white;
}

.stats-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.stats-description {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    color: white;
    opacity: 0.70;
    margin-bottom: 50px;
    max-width: 800px;
}

/* STATISTICS GRID */
.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
    /* Prevents items from squashing */
}

.stat-number {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: white;
    opacity: 0.70;
    text-transform: uppercase;
    white-space: nowrap;
}

/* VERTICAL DIVIDER */
.stat-divider {
    width: 1px;
    height: 70px;
    /* Height based on Figma visual */
    background: white;
    opacity: 0.7;
    flex-shrink: 0;
}

/* Team Stats Section - Responsive */
@media (max-width: 1200px) {
    .team-image-wrapper {
        height: 500px;
    }

    .stats-grid {
        justify-content: center;
        gap: 30px;
    }

    .stat-divider {
        display: none;
        /* Hide dividers on smaller screens for cleaner stacking */
    }

    .stat-item {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .team-image-wrapper {
        height: 400px;
    }

    .stats-block {
        padding: 60px 0;
    }

    .stats-title {
        font-size: 36px;
    }

    .stats-description {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 30px;
        padding-top: 20px;
    }

    .stat-item {
        width: 100%;
        align-items: center;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .team-image-wrapper {
        height: 300px;
    }

    .stats-block {
        padding: 40px 0;
    }

    .stats-title {
        font-size: 32px;
    }

    .stats-description {
        font-size: 16px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 18px;
    }
}

/* =========================================
   18. MISSION AND VISION SECTION
   ========================================= */

/* MISSION AND VISION SECTION */
.mission-vision-section {
    background-color: #F1F1F1;
    /* Light Gray background */
    padding: 80px 0 80px;
    color: #7C7C7B;
}

.mv-block {
    padding: 40px 0;
    /* Vertical spacing between mission and vision blocks */
}

/* Titles (Shared Style) */
.mv-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 36px;
    color: #7C7C7B;
}

/* Text (Shared Style) */
.mv-text {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 300;
    /* Light weight */
    line-height: 1.4;
    color: #7C7C7B;
    opacity: 0.70;
    max-width: 800px;
    /* Limits the line length for readability */
}

/* Mission and Vision Section - Responsive */
@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mv-block {
        padding: 30px 0;
    }

    .mv-title {
        font-size: 36px;
        margin-bottom: 24px;
    }

    .mv-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .mission-vision-section {
        padding: 40px 0;
    }

    .mv-block {
        padding: 25px 0;
    }

    .mv-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .mv-text {
        font-size: 16px;
    }
}

/* =========================================
   19. NEWS LISTING PAGE
   ========================================= */

/* NEWS LISTING PAGE */
.news-listing-section {
    background-color: #7C7C7B;
    /* Match other pages */
    padding: 60px 0 100px;
    width: 100%;
}

.news-title-wrapper {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    background-color: #C1151C;
    /* Red banner background - full width */
    padding: 20px 0;
    /* Vertical padding */
    position: relative;
}

.news-title-wrapper .container {
    position: relative;
    z-index: 1;
}

.news-list-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    color: white;
    /* White text on red background */
    text-align: left;
    /* Left aligned to container */
    display: block;
}

.news-grid-wrapper {
    display: grid;
    /* 4 columns on desktop, responsive down to 2, then 1 */
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    /* Space between cards */
    align-items: stretch;
    /* Ensure all cards have same height */
}

/* News Listing Card Content Styles */
.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Ensure all cards have same height */
    background-color: transparent;
}

.news-card .card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
    /* Take up remaining space */
}

.news-card .card-date {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: white;
    opacity: 0.7;
    text-transform: uppercase;
}

.news-card .card-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: white;
    margin: 0;
    flex-grow: 1;
    /* Take up available space to push button down */
}

.news-card .read-more {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: white;
    /* White text on dark background */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, opacity 0.3s;
    margin-top: auto;
    /* Push to bottom of card */
}

.news-card .read-more:hover {
    opacity: 0.8;
}

.news-card .read-more i {
    font-size: 12px;
    transition: transform 0.3s;
}

.news-card .read-more:hover i {
    transform: translateX(5px);
}

/* News Listing - Responsive */
@media (max-width: 1200px) {
    .news-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .news-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .news-list-title {
        font-size: 40px;
    }

    .news-title-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .news-listing-section {
        padding: 40px 0 60px;
    }

    .news-list-title {
        font-size: 36px;
    }

    .news-title-wrapper {
        margin-bottom: 30px;
    }

    .news-grid-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .news-list-title {
        font-size: 32px;
    }

    .news-title-wrapper {
        margin-bottom: 25px;
    }

    .news-card .card-title {
        font-size: 16px;
    }
}

/* =========================================
   20. NEWS DETAIL PAGE - HERO SECTION
   ========================================= */

/* NEWS DETAIL PAGE - HERO SECTION */
/* Override subpage-content padding for this specific section */
.subpage-content:has(.news-detail-hero) {
    padding-top: 0;
}

.news-detail-hero {
    width: 100%;
    position: relative;
    padding: 0;
    overflow: hidden;
    /* Ensure no background peek */
    background-color: #7C7C7B;
    /* Negate subpage-content padding to start right after header */
    margin-top: -60px;
}

/* Ensure the parent wrapper allows relative positioning */
.news-image-wrapper {
    width: 100%;
    height: 560px;
    /* Figma specified height */
    position: relative;
    overflow: hidden;
}

.news-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* GRADIENT OVERLAY */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Spans the full height to allow the gradient to blend */
    /* Gradient from top (dark) to transparent (bottom) */
    background: linear-gradient(180deg, rgba(124, 124, 123, 0.7) 0%, rgba(124, 124, 123, 0) 100%);
    z-index: 5;
}

/* INFO BAR (The navigation, date, category) */
/* NEWS DETAIL PAGE - INFO BAR FINAL ALIGNMENT AND SPACING */
.news-detail-hero .news-info-bar {
    /* TOP SPACING FIX: Header height (160px) + 60px gap = 220px from image top */
    position: absolute;
    top: 220px;
    /* Header (160px) + 60px gap below header */

    /* HORIZONTAL ALIGNMENT FIX (Using the container size/centering) */
    width: 100%;
    max-width: 1200px;
    /* Standard Max Container Width */
    padding: 0 20px;
    /* Standard Container Padding */
    margin: 0;

    left: 50%;
    transform: translateX(-50%);
    /* Centers the max-width bar */

    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

/* LEFT SIDE (Navigation) */
.nav-detail {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: white;
    /* Remove any lingering absolute/fixed positioning if it exists from older code */
    position: relative;
    top: auto;
    left: auto;
    right: auto;
}

.nav-path {
    font-weight: 300;
    /* Light */
}

.nav-current {
    font-weight: 700;
    /* Bold */
}

/* RIGHT SIDE (Meta) - Ensure internal elements are aligned to the far right */
.meta-detail {
    display: flex;
    gap: 30px;
    /* Space between category and date */
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: white;
    /* Remove any lingering absolute/fixed positioning if it exists from older code */
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    /* Figma shows Category and Date separated, so we keep them separated by a gap */
}

.meta-category {
    font-weight: 600;
}

.meta-date {
    font-weight: 300;
}

/* News Detail Hero - Responsive */
@media (max-width: 768px) {
    .news-image-wrapper {
        height: 400px;
    }

    .news-detail-hero .news-info-bar {
        top: 180px;
        /* Header (~140px) + 40px gap on smaller screens */
        padding: 0 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-detail,
    .meta-detail {
        font-size: 16px;
    }

    .meta-detail {
        gap: 20px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .news-image-wrapper {
        height: 300px;
    }

    .news-detail-hero .news-info-bar {
        top: 40px;
        /* Slightly less on mobile for better spacing */
        padding-left: 10px;
        padding-right: 10px;
    }

    .nav-detail,
    .meta-detail {
        font-size: 14px;
    }

    .meta-detail {
        flex-direction: column;
        gap: 10px;
    }
}

/* =========================================
   NEWS DETAIL CONTENT SECTION
   ========================================= */

.news-content-section {
    background-color: #7C7C7B;
    /* Dark Gray background */
    padding: 80px 0 100px;
    color: white;
}

.news-main-title {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 50px;
    max-width: 900px;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* LEFT COLUMN - TEXT CONTENT */
.article-text-col {
    flex: 3;
    /* Takes up more space */
    min-width: 400px;
}

.article-paragraph {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    color: white;
    opacity: 0.7;
    margin-bottom: 25px;
}

.article-quote {
    font-family: 'RF Dewi Extended', sans-serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: white;
    opacity: 1;
    margin: 40px 0;
    padding-left: 20px;
    border-left: 4px solid #C1151C;
    /* Brand Red accent */
}

/* RIGHT COLUMN - SOCIAL SHARE */
.social-share-col {
    flex: 1;
    /* Takes less space */
    max-width: 250px;
    min-width: 180px;
    position: sticky;
    /* Keeps the share bar visible while scrolling */
    top: 100px;
    /* Offset from the top */
}

.share-label {
    font-family: 'RF Dewi Extended', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.social-icon-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icon-link:hover {
    background: #C1151C;
    /* Brand Red hover */
}

/* Responsive adjustments for Content Layout */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }

    .social-share-col {
        position: relative;
        /* Remove sticky on mobile */
        top: auto;
        max-width: 100%;
        min-width: 100%;

        /* Arrange icons horizontally at the top */
        order: -1;

        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .social-icons {
        flex-direction: row;
    }

    .share-label {
        margin-bottom: 0;
    }

    .article-text-col {
        min-width: 100%;
    }

    .news-main-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .news-content-section {
        padding: 60px 0 80px;
    }

    .news-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .article-paragraph {
        font-size: 18px;
    }

    .article-quote {
        font-size: 20px;
        margin: 30px 0;
    }
}

/* ======================================= */
/* RESPONSIVE CSS START (MOBILE FIRST)     */
/* ======================================= */

/* Base style for the toggle (Hidden by default) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: opacity 0.3s;
}

.mobile-menu-toggle:hover {
    opacity: 0.8;
}

/* Mobile Menu Close Button - Hidden on Desktop */
.mobile-menu-close {
    display: none;
}

/* 1. TABLET/DESKTOP BREAKPOINT (Max 1024px) */
@media (max-width: 1024px) {

    /* Ensure the container padding is good */
    .container {
        padding: 0 20px;
    }

    /* HEADER ADJUSTMENTS */
    .header-top {
        display: none;
        /* Hide top contact bar */
    }

    /* Adjust main nav gap */
    .main-menu {
        gap: 20px;
    }

    /* Title size reduction for smaller screens */
    .model-text {
        font-size: 10vw;
    }

    /* TECH CARD (Shrink or Adjust Position) */
    .tech-card {
        padding: 20px;
        bottom: 20px;
        left: 20px;
        /* Updated to left since card is now on left */
        transform: scale(0.9);
        transform-origin: bottom left;
    }
}

/* 2. MOBILE BREAKPOINT (Max 768px) */
@media (max-width: 768px) {

    /* --- NEW MOBILE GRID GUIDE --- */
    .container {
        /* 20px Margin (Used as internal padding for the container) */
        padding: 0 20px;
        max-width: 100%;
    }

    /* Ensure all sections respect the new padding */
    .section-padding {
        padding: 60px 0;
        /* Vertical padding consistent */
    }

    /* --- HEADER ALIGNMENT FIX (Adjust padding to 20px margin) --- */
    .header-main {
        padding: 15px 0;
    }

    /* Use Flexbox to align Logo (left) and Toggle (right) */
    .main-nav-wrapper {
        display: flex;
        justify-content: space-between;
        /* Pushes Logo and Toggle to opposite ends */
        align-items: center;
        width: 100%;
    }

    /* Logo sizing on mobile */
    .header-logo img {
        max-width: 120px;
        /* Sizing the logo appropriately */
        height: auto;
    }

    /* ======================================= */
    /* MOBILE HERO SECTION - MINIMAL ADJUSTMENTS */
    /* ======================================= */

    /* Tech card - hide on mobile */
    .tech-card {
        display: none;
        /* Hide tech card on mobile */
    }

    /* =========================================
       MOBILE MENU - CLEAN & PROFESSIONAL
       ========================================= */

    /* 1. MOBILE MENU PANEL - Slide from right */
    .main-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;

        /* White background */
        background: #ffffffee;

        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        z-index: 9999;

        /* Initial state: Hidden to the right */
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);

        padding: 0;
        overflow-y: auto;
    }

    /* 2. Menu Open State */
    .main-menu.menu-open {
        transform: translateX(0);
    }

    /* 3. MENU HEADER AREA */
    .main-menu::before {
        content: 'MENÜ';
        display: block;
        padding: 35px 30px 25px;
        font-family: 'RF Dewi Extended', sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 4px;
        color: rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    /* 4. CLOSE BUTTON - Minimal design */
    .mobile-menu-close {
        position: absolute;
        top: 30px;
        right: 25px;
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10000;
        transition: all 0.3s ease;
    }

    .mobile-menu-close i {
        color: #000000;
        font-size: 18px;
    }

    .mobile-menu-close:hover {
        background: #C1151C;
        border-color: #C1151C;
    }

    /* 5. MENU LINKS - Clean with icons */
    .main-menu a {
        display: flex;
        align-items: center;
        gap: 16px;
        font-family: 'RF Dewi Extended', sans-serif;
        font-size: 15px;
        font-weight: 500;
        color: #000000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;

        padding: 20px 30px;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);

        position: relative;
        transition: all 0.3s ease;
    }

    /* Icon placeholder using ::before */
    .main-menu a::before {
        content: '▸';
        font-size: 14px;
        color: rgba(0, 0, 0, 0.4);
        transition: all 0.3s ease;
    }

    /* Red accent on left side */
    .main-menu a::after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: #C1151C;
        transition: width 0.3s ease;
    }

    /* 6. HOVER EFFECTS */
    .main-menu a:hover {
        background: rgba(0, 0, 0, 0.05);
        color: #000000;
        padding-left: 35px;
    }

    .main-menu a:hover::before {
        color: #C1151C;
        transform: translateX(3px);
    }

    .main-menu a:hover::after {
        width: 4px;
    }

    /* 7. ACTIVE LINK */
    .main-menu a.active {
        background: rgba(193, 21, 28, 0.08);
        color: #000000;
        font-weight: 600;
    }

    .main-menu a.active::before {
        color: #C1151C;
    }

    .main-menu a.active::after {
        width: 4px;
    }

    /* 8. MENU FOOTER INFO */
    .main-menu::after {
        content: 'XCRANE © 2025';
        display: block;
        margin-top: auto;
        padding: 25px 30px;
        font-family: 'RF Dewi Extended', sans-serif;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 1px;
        color: rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(0, 0, 0, 0.06);
    }

    /* 9. HAMBURGER BUTTON */
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        padding: 10px 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-menu-toggle:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .mobile-menu-toggle i {
        color: white;
        font-size: 20px;
    }

    /* 10. Body scroll lock */
    body.no-scroll {
        overflow: hidden;
    }

    /* 11. Backdrop overlay */
    .menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hide tech card on mobile */
    .tech-card {
        display: none;
    }

    /* --- CATEGORY NAV (Adjusted for 20px Gutter & Margin) --- */
    .category-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 15px;
        padding-bottom: 20px;
    }

    .category-divider {
        display: none;
    }

    .category-item {
        padding: 12px 5px;
        border: 1px solid rgba(255, 255, 255, 0.37);
        border-radius: 4px;
        text-align: center;
        transition: background-color 0.3s;
    }

    .category-item span {
        font-size: 11px;
        line-height: 1.2;
    }

    /* TEXT CONTENT REDUCTION (General) */
    .philosophy-title,
    .stats-title,
    .mv-title,
    .news-main-title,
    .news-list-title {
        font-size: 36px;
        /* Reduce large titles */
    }

    .philosophy-text,
    .stats-description,
    .mv-text,
    .article-paragraph {
        font-size: 16px;
        /* Reduce paragraph text */
    }
}