/* -------------------------------------------------------------
   DESIGN SYSTEM & CUSTOM VARIABLES (Modern Premium HSL Theme)
   ------------------------------------------------------------- */
:root {
    --bg-main: hsl(222, 47%, 10%);       /* Dark Slate Deep Background */
    --bg-darker: hsl(222, 47%, 6%);
    --bg-card: hsla(222, 47%, 15%, 0.65); /* Yarı saydam kart rengi (Glass) */
    --border-color: hsla(210, 40%, 100%, 0.08);
    --border-hover: hsla(174, 100%, 41%, 0.3);
    
    --text-primary: hsl(210, 40%, 98%);
    --text-secondary: hsl(215, 20%, 72%);
    --text-muted: hsl(215, 16%, 50%);
    
    --accent: hsl(174, 100%, 41%);       /* Neon Teal / Turkuaz */
    --accent-hover: hsl(174, 100%, 35%);
    --accent-glow: hsla(174, 100%, 41%, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* -------------------------------------------------------------
   GLOBAL & RESET STYLES
   ------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-darker);
    background-image: 
        radial-gradient(at 0% 0%, hsla(222, 47%, 15%, 0.5) 0px, transparent 50%),
        radial-gradient(at 100% 100%, hsla(174, 100%, 41%, 0.05) 0px, transparent 50%);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* -------------------------------------------------------------
   TYPOGRAPHY & UTILITIES
   ------------------------------------------------------------- */
.accent-text {
    color: var(--accent);
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent) !important;
}

.w-100 {
    width: 100%;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
}

.sub-title {
    display: block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

/* Grid & Layout Containers */
.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
    padding: 0 24px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* -------------------------------------------------------------
   BUTTONS & ACTIONS
   ------------------------------------------------------------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--accent);
    color: hsl(222, 47%, 10%);
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 14px 28px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 var(--accent-glow);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 var(--accent-glow);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: transparent;
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 14px 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* -------------------------------------------------------------
   NAVIGATION BAR
   ------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* -------------------------------------------------------------
   HERO SECTION
   ------------------------------------------------------------- */
.hero-section {
    padding: 180px 0 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 45px;
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 24px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Glass Frame Illustration */
.hero-visual-content {
    display: flex;
    justify-content: center;
    position: relative;
}

.glass-art-card {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 4/5;
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.95) 100%), url('images/katlanir.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.glass-pane-reflection {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 45%,
        rgba(255, 255, 255, 0.08) 50%,
        transparent 55%
    );
    animation: shine 8s infinite linear;
}

.glass-art-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.glass-art-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.glass-divider {
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 20px;
}

.glass-art-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-num {
    display: block;
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* -------------------------------------------------------------
   SERVICES SECTION
   ------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(13, 148, 136, 0.1);
}

.card-img-container {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-img {
    transform: scale(1.08);
}

.card-text-wrapper {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-text-wrapper h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.card-text-wrapper p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-link {
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link i {
    transition: transform 0.2s ease;
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Highlighted (Isıcamlı) Card Style */
.highlight-card {
    background: linear-gradient(135deg, hsla(222, 47%, 18%, 0.7) 0%, hsla(222, 47%, 12%, 0.7) 100%);
    border-color: rgba(13, 148, 136, 0.3);
}

.highlight-card:hover {
    border-color: var(--accent);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: hsl(222, 47%, 10%);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* -------------------------------------------------------------
   INTERACTIVE PRICE CALCULATOR
   ------------------------------------------------------------- */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.calc-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.calc-info p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.calc-warning {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.calc-warning i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Calculator Glass Box */
.calc-box-glass {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.slider-group {
    margin-bottom: 30px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.range-val {
    color: var(--accent);
    font-weight: 600;
}

/* Custom range slider stylings */
.custom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

.custom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: transform 0.1s ease;
}

.custom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Glass Option Buttons style */
.glass-selector-group {
    margin-bottom: 35px;
}

.glass-selector-group > label {
    display: block;
    margin-bottom: 12px;
    font-weight: 500;
}

.glass-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.glass-opt {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 14px 20px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-opt.active {
    border-color: var(--accent);
    background: var(--accent-glow);
    color: var(--accent);
}

/* Results block */
.calc-results {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.res-lbl {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.res-val {
    font-weight: 600;
}

.result-divider {
    height: 1px;
    background: var(--border-color);
    margin: 20px 0;
}

.res-price-val {
    font-size: 1.8rem;
    font-weight: 700;
}

.calc-cta-btn {
    width: 100%;
    margin-top: 25px;
}

/* -------------------------------------------------------------
   ABOUT (HAKKIMIZDA) SECTION
   ------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.badges-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.stack-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}

.stack-badge i {
    font-size: 1.5rem;
    color: var(--accent);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 35px;
}

.point-item {
    display: flex;
    gap: 16px;
}

.point-icon {
    font-size: 1.35rem;
    color: var(--accent);
    margin-top: 3px;
}

.point-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.point-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   CONTACT & FORM (İLETİŞİM) SECTION
   ------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.detail-icon {
    font-size: 1.35rem;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 12px;
    border-radius: 12px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-item h5 {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-detail-item p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Contact Form container */
.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-panel p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.discovery-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.05);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--bg-main);
    color: var(--text-primary);
}

/* -------------------------------------------------------------
   FOOTER SECTION
   ------------------------------------------------------------- */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.footer-brand-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--accent);
}

.footer-links-group h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links-group ul {
    list-style: none;
}

.footer-links-group ul li {
    margin-bottom: 12px;
}

.footer-links-group ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links-group ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 24px 0 24px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* -------------------------------------------------------------
   ANIMATIONS & KEYFRAMES
   ------------------------------------------------------------- */
@keyframes shine {
    0% {
        transform: translate(-30%, -30%) rotate(0deg);
    }
    100% {
        transform: translate(30%, 30%) rotate(360deg);
    }
}

/* -------------------------------------------------------------
   RESPONSIVE STYLES (Mobile & Tablet)
   ------------------------------------------------------------- */
@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .hero-grid,
    .calc-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-section {
        padding: 140px 0 80px 0;
    }
    
    .hero-visual-content {
        order: -1; /* Görsel mobilde metnin üstüne gelir */
    }
    
    .glass-art-card {
        aspect-ratio: 16/10;
        max-width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Hide default nav menu on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: hsl(222, 47%, 8%);
        border-bottom: 1px solid var(--border-color);
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-cta-btn {
        display: none; /* Hide top bar cta button on mobile view */
    }
    
    .hero-text-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .calc-box-glass,
    .contact-form-panel {
        padding: 24px;
    }
    
    .glass-options {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------
   WIX MEDYA GOLD CREDIT STYLE
   ------------------------------------------------------------- */
.wixmedya-credit {
    margin-top: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0px 1px 2px rgba(0, 0, 0, 0.5));
}

.wixmedya-credit a {
    font-weight: 700;
    text-decoration: underline;
    background: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.wixmedya-credit a:hover {
    filter: brightness(1.2);
    text-shadow: 0 0 8px rgba(251, 245, 183, 0.4);
}

/* -------------------------------------------------------------
   BRANDS SECTION STYLING
   ------------------------------------------------------------- */
.brands-section {
    padding: 60px 0;
    background-color: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.brands-header {
    text-align: center;
    margin-bottom: 40px;
}

.brands-header h3 {
    font-size: 1.8rem;
    margin-top: 8px;
}

.brands-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.brand-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    min-width: 140px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.brand-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 8px 24px 0 rgba(13, 148, 136, 0.15);
}

/* -------------------------------------------------------------
   ADDITIONAL SERVICES SECTION STYLING
   ------------------------------------------------------------- */
.additional-services-section {
    background-color: var(--bg-darker);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.add-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.add-service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px 0 rgba(13, 148, 136, 0.1);
}

.add-icon {
    font-size: 1.8rem;
    color: var(--accent);
}

.add-service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.add-service-card p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
