/* =====================================================
   MERKEZ GÜVENLİK - CSS
   Color Palette:
   - Orange Primary: #F68531
   - Navy Primary: #0A1D35
   - White: #FFFFFF
   - Light Gray: #F5F6F8
   - Medium Gray: #6B7280
   ===================================================== */

:root {
    --orange: #F68531;
    --orange-dark: #d96e1a;
    --orange-light: #fef3ea;
    --navy: #0A1D35;
    --navy-mid: #1a3050;
    --navy-light: #2a4a6b;
    --white: #FFFFFF;
    --light-gray: #F5F6F8;
    --mid-gray: #e8eaed;
    --text-gray: #6B7280;
    --text-dark: #1a1a2e;
    --border: #e0e2e7;
    --shadow: 0 4px 24px rgba(10, 29, 53, 0.10);
    --shadow-lg: 0 8px 40px rgba(10, 29, 53, 0.18);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
    --header-height: 60px;
    --util-height: 42px;
}

/* RESET & BASE */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    font-size: 15px;
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.orange {
    color: var(--orange);
}

/* ======== WHATSAPP FLOAT ======== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ======== OFFER MODAL POPUP ======== */
.offer-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 29, 53, 0.65);
    backdrop-filter: blur(6px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offer-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.offer-modal {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    box-shadow: 0 32px 80px rgba(10, 29, 53, 0.25);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.offer-modal-overlay.open .offer-modal {
    transform: scale(1) translateY(0);
}

.offer-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 29, 53, 0.08);
    color: var(--navy);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background var(--transition);
}

.offer-modal-close:hover {
    background: rgba(10, 29, 53, 0.15);
}

/* Left side - navy bg */
.offer-modal-left {
    background: var(--navy);
    border-radius: 24px 0 0 24px;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.offer-modal-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(246, 133, 49, 0.15);
    color: var(--orange);
    border: 1px solid rgba(246, 133, 49, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    width: fit-content;
}

.offer-modal-left h2 {
    color: white;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.4;
}

.offer-modal-left h2 span {
    color: var(--orange);
}

.offer-modal-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-point {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

.offer-point i {
    color: var(--orange);
    font-size: 16px;
    flex-shrink: 0;
}

.offer-modal-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--orange);
    border-radius: 14px;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
    margin-top: auto;
}

.offer-modal-phone:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.offer-modal-phone i {
    font-size: 22px;
    flex-shrink: 0;
}

.offer-phone-label {
    display: block;
    font-size: 11px;
    opacity: 0.85;
}

.offer-phone-num {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Right side - form */
.offer-modal-right {
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer-modal-right h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.offer-modal-right>p {
    color: var(--text-gray);
    font-size: 14px;
}

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

.offer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.offer-form input,
.offer-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--navy);
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
}

.offer-form input::placeholder {
    color: var(--text-gray);
}

.offer-form input:focus,
.offer-form select:focus {
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(246, 133, 49, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    color: var(--text-gray);
    font-size: 11px;
    line-height: 1.5;
    width: 100%;
    overflow: hidden;
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: var(--orange);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.checkbox-label span {
    flex: 1;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.checkbox-label a {
    color: var(--orange);
    text-decoration: underline;
}

.offer-submit-btn {
    background: var(--orange);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px;
}

.offer-submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}


/* ======== UTILITY BAR ======== */
.utility-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 900;
    height: var(--util-height);
    margin-right: var(--sticky-width);
}

.utility-inner {
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    font-size: 13px;
}

.utility-left,
.utility-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
}

.utility-phone i {
    color: var(--orange);
}

.utility-phone strong {
    font-weight: 600;
}

.utility-divider {
    color: var(--border);
    font-size: 18px;
}

.utility-hashtag {
    color: var(--text-gray);
    font-size: 12px;
}

.utility-link {
    color: var(--navy-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.utility-link:hover {
    color: var(--orange);
}

.utility-lang,
.utility-login {
    color: var(--navy);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.utility-lang:hover,
.utility-login:hover {
    color: var(--orange);
}

/* ======== LOGIN DROPDOWN ======== */
.login-dropdown-wrap {
    position: relative;
}

.utility-login {
    background: none;
    border: none;
    color: var(--navy);
    font-family: inherit;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all var(--transition);
}

.utility-login:hover {
    color: var(--orange);
    background: var(--orange-light);
}

.login-caret {
    font-size: 9px;
    transition: transform var(--transition);
}

.login-dropdown-wrap.open .utility-login {
    color: var(--orange);
    background: var(--orange-light);
}

.login-dropdown-wrap.open .login-caret {
    transform: rotate(180deg);
}

.login-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(10, 29, 53, 0.15), 0 4px 16px rgba(10, 29, 53, 0.06);
    border: 1px solid rgba(10, 29, 53, 0.07);
    padding: 20px;
    width: 500px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
}

/* Arrow pointer */
.login-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    right: 24px;
    width: 14px;
    height: 14px;
    background: white;
    border-left: 1px solid rgba(10, 29, 53, 0.07);
    border-top: 1px solid rgba(10, 29, 53, 0.07);
    transform: rotate(45deg);
    border-radius: 2px;
}

.login-dropdown-wrap.open .login-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Dropdown header */
.login-dropdown-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

/* 2x2 grid */
.login-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.login-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 14px;
    border-radius: 14px;
    border: 1.5px solid #eaecf0;
    background: #f7f9fc;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
}

.login-card:hover {
    background: white;
    border-color: currentColor;
    box-shadow: 0 6px 24px rgba(10, 29, 53, 0.1);
    transform: translateY(-2px);
}

.login-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: transform 0.2s ease;
}

.login-card:hover .login-card-icon {
    transform: scale(1.1);
}

.login-card-body {
    flex: 1;
    min-width: 0;
}

.login-card-label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    line-height: 1.3;
    text-transform: uppercase;
}

.login-card-sub {
    display: block;
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 2px;
}

.login-card-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    opacity: 0.4;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.login-card:hover .login-card-arrow {
    opacity: 1;
    transform: translateX(2px);
}

/* Orange variant - Pronet Plus */
.login-card--orange {
    border-color: rgba(246, 133, 49, 0.2);
}

.login-card--orange:hover {
    border-color: var(--orange);
    box-shadow: 0 6px 24px rgba(246, 133, 49, 0.15);
}

.login-card--orange .login-card-icon {
    background: rgba(246, 133, 49, 0.1);
    color: var(--orange);
}

.login-card--orange .login-card-label {
    color: var(--orange);
}

.login-card--orange .login-card-arrow {
    color: var(--orange);
}

/* Navy variant - Online İşlem */
.login-card--navy {
    border-color: rgba(10, 29, 53, 0.12);
}

.login-card--navy:hover {
    border-color: var(--navy);
    box-shadow: 0 6px 24px rgba(10, 29, 53, 0.12);
}

.login-card--navy .login-card-icon {
    background: rgba(10, 29, 53, 0.08);
    color: var(--navy);
}

.login-card--navy .login-card-label {
    color: var(--navy);
}

.login-card--navy .login-card-arrow {
    color: var(--navy);
}

/* Dark variant - Kameram */
.login-card--dark {
    border-color: rgba(10, 29, 53, 0.08);
}

.login-card--dark:hover {
    border-color: #334155;
    box-shadow: 0 6px 24px rgba(51, 65, 85, 0.12);
}

.login-card--dark .login-card-icon {
    background: rgba(51, 65, 85, 0.08);
    color: #334155;
}

.login-card--dark .login-card-label {
    color: #334155;
}

.login-card--dark .login-card-arrow {
    color: #334155;
}


/* ======== MAIN HEADER ======== */
.main-header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;

    z-index: 890;
    height: var(--header-height);
    box-shadow: 0 2px 12px rgba(10, 29, 53, 0.06);
    margin-right: var(--sticky-width);
}

.header-inner {
    width: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 180px;
    height: 100%;
}

/* Logo */
.logo,
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-text,
.footer-logo>div:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name,
.footer-logo-name {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: 2px;
}

.logo-sub,
.footer-logo-sub {
    font-size: 9px;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 3px;
}

/* Navigation */
.main-nav {
    flex: 1;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    border-radius: var(--radius);
    white-space: nowrap;
    transition: all var(--transition);
}

.nav-item>a i {
    font-size: 10px;
    transition: transform var(--transition);
}

.nav-item:hover>a {
    color: var(--orange);
    background: var(--orange-light);
}

.nav-item:hover>a i {
    transform: rotate(180deg);
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 480px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    border: 1px solid var(--border);
    border-top: none;
    pointer-events: none;
}

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

.dropdown-inner {
    display: flex;
    padding: 24px;
    gap: 32px;
}

.dropdown-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dropdown-col a {
    display: block;
    font-size: 14px;
    color: var(--navy);
    padding: 5px 0;
    font-weight: 500;
    transition: color var(--transition);
}

.dropdown-col a:hover {
    color: var(--orange);
}

/* Design Button */
.design-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid var(--navy);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    transition: all var(--transition);
}

.design-btn:hover {
    background: var(--navy);
    color: white;
}

.design-btn i {
    font-size: 14px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ======== MAIN CONTENT WRAPPER ======== */
.main-content-wrapper {
    margin-right: var(--sticky-width);
    min-height: 100vh;
}

/* ======== HERO SECTION ======== */
.hero-section {
    overflow: hidden;
    background: var(--light-gray);
}

.hero-slider {
    position: relative;
    min-height: 480px;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

/* All slides share the same light theme */
.slide-content {
    display: flex;
    min-height: 480px;
    background: var(--light-gray);
}

.slide-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 48px 64px;
}

/* Slide 2 keeps dark background but fixes text */
.slide-dark-bg {
    background: linear-gradient(135deg, #0d2747 0%, #1a3a5c 100%);
}

.slide-dark-bg .slide-text h2 {
    color: #ffffff;
}

.slide-dark-bg .slide-text p {
    color: rgba(255, 255, 255, 0.80);
}

.slide-dark-bg .slide-cta {
    background: var(--orange);
    color: white;
}

.slide-dark-bg .slide-cta:hover {
    background: var(--orange-dark);
}

.slide-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.slide-text h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--navy);
}

.slide-text p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.75;
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: white;
    padding: 14px 34px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    align-self: flex-start;
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(246, 133, 49, 0.3);
}

.slide-cta:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(246, 133, 49, 0.4);
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    background: var(--orange);
    color: white;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 30px;
    align-self: flex-start;
    letter-spacing: 1px;
}

.slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(10, 29, 53, 0.25);
    transition: all var(--transition);
    padding: 0;
}

.dot.active {
    background: var(--orange);
    width: 28px;
    border-radius: 5px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: white;
    box-shadow: var(--shadow);
    color: var(--navy);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition);
}

.slider-arrow:hover {
    background: var(--orange);
    color: white;
}

.slider-prev {
    left: 16px;
}

.slider-next {
    right: 16px;
}

/* ======== STATS BAR ======== */
.stats-bar {
    background: white;
    border-bottom: 1px solid var(--border);
}

.stats-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 72px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
}

.stat-item i {
    font-size: 22px;
    color: var(--orange);
}

.stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* ======== INTRO SECTION ======== */
.intro-section {
    padding: 64px 0;
    background: white;
}

.intro-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-text h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 16px;
}

.intro-text p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 680px;
    line-height: 1.8;
}

.intro-media {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: center;
}

.video-placeholder {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.video-placeholder img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 29, 53, 0.5);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px;
    transition: background var(--transition);
}

.play-overlay:hover {
    background: rgba(10, 29, 53, 0.65);
}

.play-icon {
    width: 60px;
    height: 60px;
    background: #FF0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 28px;
    color: white;
}

.play-overlay span {
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.play-overlay small {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.intro-products {
    position: relative;
}

.intro-products img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: 340px;
    width: 100%;
    object-fit: cover;
}

.product-chip {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 28px;
    height: 28px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: 700;
    z-index: 2;
}

/* ======== CATEGORY SECTION ======== */
.category-section {
    padding: 0 0 64px;
    background: white;
}

.category-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
}

.category-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover img {
    transform: scale(1.04);
}

.category-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px 18px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.category-label i {
    color: var(--orange);
}

/* ======== FEATURES SECTION ======== */
.features-section {
    padding: 72px 0;
    background: var(--light-gray);
}

.features-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-sub {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-gray);
    background: white;
    border: 2px solid var(--border);
    transition: all var(--transition);
}

.feature-tab:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.feature-tab.active {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.feature-tab i {
    font-size: 15px;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.feature-tab-content {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.feature-tab-content.active {
    display: flex;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(10, 29, 53, 0.06);
    transition: box-shadow var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 22px;
    color: var(--orange);
    width: 36px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    background: white;
    border-radius: 24px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 280px;
    width: 100%;
}

.phone-mockup img {
    border-radius: 16px;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.phone-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.pdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mid-gray);
}

.pdot.active {
    background: var(--orange);
}

.features-cta {
    text-align: center;
    margin-top: 40px;
}

/* ======== COMMON BUTTONS ======== */
.primary-btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 14px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.primary-btn:hover {
    background: var(--orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 133, 49, 0.35);
}

.large-btn {
    padding: 16px 56px;
    font-size: 17px;
}

/* ======== HOW IT WORKS SECTION ======== */
.how-section {
    padding: 72px 0;
    background: white;
}

.how-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
}

.step-item {
    display: grid;
    grid-template-columns: 64px 1fr 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
}

.step-item:last-child {
    border-bottom: none;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--mid-gray);
    color: var(--text-gray);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition);
    margin-top: 4px;
}

.step-item.active .step-number {
    background: var(--orange);
    color: white;
}

.step-item.active {}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.35;
}

.step-detail {
    display: none;
}

.step-item.active .step-detail {
    display: block;
}

.step-detail p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.step-detail ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-detail li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--navy);
    font-weight: 500;
}

.step-detail li i {
    color: var(--orange);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.step-image {
    display: none;
}

.step-item.active .step-image {
    display: flex;
    justify-content: center;
}

.step-image img {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ======== DESIGN YOUR SYSTEM ======== */
.design-section {
    padding: 90px 0;
    background: var(--navy);
}

.design-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.design-header {
    text-align: center;
    margin-bottom: 56px;
}

.design-title {
    font-size: 34px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.3;
}

.design-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Step Blocks */
.design-step-block {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
}

.design-step-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
}

.design-step-label span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--orange);
    color: white;
    font-size: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Choices (Radio & Checkbox) */
.design-choice,
.design-systems {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.choice-card,
.system-card {
    cursor: pointer;
}

.choice-card input,
.system-card input {
    display: none;
}

.choice-inner,
.system-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 28px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
    height: 100%;
}

.choice-inner i,
.system-inner i {
    font-size: 36px;
    transition: transform 0.2s ease;
}

.choice-inner span,
.system-inner span {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.choice-inner small {
    font-size: 12px;
    opacity: 0.7;
}

/* States */
.choice-card input:checked+.choice-inner,
.system-card input:checked+.system-inner {
    border-color: var(--orange);
    background: rgba(246, 133, 49, 0.1);
}

.choice-card input:checked+.choice-inner i,
.system-card input:checked+.system-inner i {
    color: var(--orange);
    transform: scale(1.1);
}

.choice-card:hover .choice-inner,
.system-card:hover .system-inner {
    border-color: rgba(246, 133, 49, 0.5);
    background: rgba(255, 255, 255, 0.06);
}

/* Process Timeline */
.design-process {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 64px 0 48px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 30px 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.design-process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.dps-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.design-process-step:hover .dps-icon {
    border-color: var(--orange);
}

.dps-num {
    position: absolute;
    top: -6px;
    right: 50%;
    margin-right: -34px;
    width: 22px;
    height: 22px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--navy);
}

.dps-title {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.dps-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 160px;
    line-height: 1.4;
}

.dps-arrow {
    color: rgba(255, 255, 255, 0.15);
    font-size: 20px;
}

.design-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.design-phone-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    transition: color 0.2s ease;
}

.design-phone-cta:hover {
    color: var(--orange);
}

.design-phone-cta i {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
}

/* ======== TESTIMONIALS ======== */
.testimonials-section {
    padding: 72px 0;
    background: var(--light-gray);
}

.testimonials-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--transition), transform var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stars {
    color: #F59E0B;
    font-size: 18px;
    letter-spacing: 2px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    flex: 1;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}

.reviewer span {
    font-size: 12px;
    color: var(--text-gray);
}

/* ======== PARTNER SECTION ======== */
.partner-section {
    padding: 0 0 64px;
    background: var(--light-gray);
}

.partner-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 28px 32px;
    background: #EBF2FF;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 24px;
}

.partner-icon {
    font-size: 36px;
    color: var(--navy-light);
    flex-shrink: 0;
}

.partner-text {
    flex: 1;
}

.partner-link {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.partner-link:hover {
    color: var(--orange);
}

.partner-text p {
    font-size: 13px;
    color: var(--text-gray);
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid var(--navy);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    transition: all var(--transition);
}

.partner-btn:hover {
    background: var(--navy);
    color: white;
}

/* ======== FOOTER ======== */
.site-footer {
    background: white;
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 56px 0 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-about {
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.7;
    margin: 12px 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 15px;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-gray);
    transition: color var(--transition);
}

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

.footer-middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.footer-cert {
    font-size: 13px;
    color: var(--text-gray);
}

.footer-cert strong {
    color: var(--navy);
}

.footer-badges {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cert-badge {
    padding: 6px 14px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.cert-badge.tuv {
    color: #003DA5;
    border-color: #003DA5;
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.footer-legal a {
    font-size: 12px;
    color: var(--text-gray);
}

.footer-legal a:hover {
    color: var(--orange);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-gray);
}

/* ======== SCROLL ANIMATIONS ======== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.animate-in {
    animation: fadeInUp 0.5s ease forwards;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .offer-modal {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .offer-modal-left {
        border-radius: 24px 24px 0 0;
        padding: 32px 28px;
    }

    .offer-modal-right {
        padding: 28px;
    }

    .offer-form-row {
        grid-template-columns: 1fr;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 24px;
    }

    .slide-text h2 {
        font-size: 24px;
    }

    .slide-image img {
        height: 220px;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .features-visual {
        order: -1;
    }

    .step-item {
        grid-template-columns: 48px 1fr;
    }

    .step-image {
        display: none !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }

    .intro-media {
        grid-template-columns: 1fr;
    }

    .design-process {
        grid-template-columns: 1fr 1fr;
    }

    .dps-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .utility-bar {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .main-nav.open {
        display: flex;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: #f8f9fa;
        z-index: 880;
        flex-direction: column;
        padding: 24px;
        overflow-y: auto;
        border-top: 1px solid var(--border);
    }

    /* Mobile Submenu Support */
    .nav-item.has-dropdown.active .dropdown-menu {
        display: block;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        min-width: 100%;
        background: #f3f4f6;
        border-radius: 12px;
        margin-top: 10px;
        pointer-events: auto;
    }
    .nav-item.has-dropdown .dropdown-inner {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
    }
    .nav-item.has-dropdown.active > a i {
        transform: rotate(180deg);
    }
    .nav-item.has-dropdown.active > a {
        background: var(--orange-light);
        border-color: var(--orange);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 8px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item>a {
        font-size: 16px;
        padding: 16px 20px;
        border-radius: 12px;
        background: white;
        border: 1px solid var(--border);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
        display: flex;
        justify-content: space-between;
    }

    .nav-item.has-dropdown>a i {
        transform: rotate(-90deg);
    }

    .dropdown-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .main-header {
        height: 60px;
    }

    .header-inner {
        padding: 0 16px;
        justify-content: space-between;
        gap: 0;
    }

    .design-btn {
        display: none;
    }

    .category-inner {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .partner-inner {
        flex-direction: column;
        text-align: center;
    }

    .design-steps-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .step-connector {
        width: 1px;
        height: 24px;
        margin: 0 0 0 60px;
    }

    .features-tabs {
        justify-content: center;
    }

    .step-item {
        grid-template-columns: 40px 1fr;
        gap: 16px;
    }

    .stats-inner {
        gap: 0;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        flex: 1 0 40%;
    }

    .section-title {
        font-size: 24px;
    }

    .design-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .slide-content-inner {
        grid-template-columns: 1fr;
        padding: 32px 20px;
        gap: 24px;
    }

    .slide-text h2 {
        font-size: 22px;
    }

    .slide-cta {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .hero-section {
        min-height: auto;
    }

    .intro-text h2 {
        font-size: 24px;
    }

    .design-choice {
        gap: 12px;
    }

    .choice-inner {
        padding: 18px 24px;
        min-width: 100px;
    }

    .whatsapp-float {
        bottom: 80px;
        left: auto;
        right: 24px;
    }

    .page-hero-content {
        padding: 0 16px;
        width: 100%;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .primary-btn,
    .hero-actions .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   INTERNAL PAGES (SUBPAGES) COMMON STYLES
   ===================================================== */
.page-content {
    background: var(--light-gray);
    min-height: 60vh;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 29, 53, 0.95), rgba(10, 29, 53, 0.4));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
}

.hero-badge {
    display: inline-block;
    background: rgba(246, 133, 49, 0.2);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(246, 133, 49, 0.3);
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Product Features Grid */
.product-features-section {
    padding: 80px 0;
    background: white;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(10, 29, 53, 0.02);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(10, 29, 53, 0.08);
    border-color: rgba(246, 133, 49, 0.2);
}

.card-icon {
    width: 72px;
    height: 72px;
    background: rgba(246, 133, 49, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.product-card:hover .card-icon {
    transform: scale(1.1);
    background: var(--orange);
    color: white;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.product-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Info Block Section */
.info-block-section {
    padding: 90px 0;
}

.info-block-section.navy-bg {
    background: var(--navy);
    color: white;
}

.info-block-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.info-block-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 16px 0 24px;
    line-height: 1.25;
}

.info-block-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.check-list i {
    color: var(--orange);
    margin-top: 3px;
}

.info-block-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(10, 29, 53, 0.3);
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }

    .info-block-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
}

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

    .page-hero h1 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .info-block-text h2 {
        font-size: 28px;
    }
}/* =====================================================
   NEW MOBILE MENU (SLIDE-IN) & RESPONSIVE FIXES
   ===================================================== */
@media (max-width: 991px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--navy);
        z-index: 1000;
        padding-top: 80px;
        overflow-y: auto;
        box-shadow: 10px 0 30px rgba(0,0,0,0.5);
    }
    .main-nav.open {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-item > a {
        color: white;
        padding: 15px 24px;
        border-radius: 0;
        justify-content: space-between;
    }
    .nav-item:hover > a {
        background: rgba(255,255,255,0.05);
        color: var(--orange);
    }
    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.2);
        display: none;
        border: none;
        border-radius: 0;
    }
    .nav-item.active .dropdown-menu {
        display: block;
    }
    .dropdown-inner {
        flex-direction: column;
        padding: 10px 24px;
        gap: 15px;
    }
    .dropdown-col h4 {
        margin-bottom: 5px;
    }
    .dropdown-col a {
        color: rgba(255,255,255,0.7);
        padding: 8px 0;
    }
    .dropdown-col a:hover {
        color: white;
    }
    .mobile-menu-btn {
        display: flex;
        z-index: 1001; /* Keep above nav */
    }
    
    /* Overlay for mobile menu */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    body.menu-open::before {
        opacity: 1;
        visibility: visible;
    }
}
/* =====================================================
   INTERIOR PAGE HERO (IMAGE 3 STYLE)
   ===================================================== */
.interior-hero {
    position: relative;
    width: 100%;
    height: 600px; /* Tall as per image */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: #0d1b2a;
}
.interior-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.interior-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Dark overlay from image */
}
.interior-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}
.interior-hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}
.interior-hero h1 span {
    color: var(--orange);
    display: block; /* Large orange part as per image */
    margin-top: 10px;
}
.interior-hero p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.interior-hero .cta-btn {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 18px 45px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(246, 133, 49, 0.3);
}
.interior-hero .cta-btn:hover {
    transform: scale(1.05);
    background: var(--orange-dark);
    box-shadow: 0 15px 40px rgba(246, 133, 49, 0.4);
}

@media (max-width: 768px) {
    .interior-hero { height: 500px; }
    .interior-hero h1 { font-size: 32px; }
    .interior-hero p { font-size: 16px; }
}

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