/* ============================================
   Ateşoğulları Araç Tadilat - Professional Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Red Color Palette - Ateşoğulları Brand Colors */
    --primary-red: #DC2626;
    --primary-red-dark: #B91C1C;
    --primary-red-light: #EF4444;
    --primary-red-lighter: #FEE2E2;
    
    /* Neutral Colors */
    --dark: #0F172A;
    --dark-light: #1E293B;
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-light: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --border-color: #E2E8F0;
    
    /* Accent Colors */
    --gold: #F59E0B;
    --gold-light: #FCD34D;
    --success: #10B981;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
}

@media (min-width: 1400px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================
   Header - Professional Styling
   ============================================ */
header {
    background: linear-gradient(135deg, var(--primary-red-dark) 0%, var(--primary-red) 100%);
    color: var(--bg-white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 100;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(185, 28, 28, 0.95) 100%);
    z-index: -1;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
    color: var(--bg-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.logo p {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.contact-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
}

.contact-info p strong {
    font-weight: 700;
    font-size: 1rem;
}

.logo-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.logo-link:hover {
    color: var(--bg-white);
    opacity: 0.95;
}

/* ============================================
   Main Navigation - Dashboard Colors
   ============================================ */


.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.main-nav li a {
    display: block;
    padding: 0.625rem 1.25rem;
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 0.5rem;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

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

.main-nav li a.active,
.nav-dropdown.active .dropdown-trigger {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Hizmetler dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 320px;
    max-width: 420px;
    max-height: 70vh;
    overflow-y: auto;
    margin-top: 0.25rem;
    padding: 0.75rem 0;
    background: var(--bg-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    list-style: none;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown .dropdown-menu li {
    margin: 0;
}

.nav-dropdown .dropdown-menu li span,
.nav-dropdown .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav-dropdown .dropdown-menu li span:hover,
.nav-dropdown .dropdown-menu li a:hover {
    background: var(--primary-red-lighter);
    border-left-color: var(--primary-red);
    color: var(--text-primary);
}

/* Dropdown: mobilde sadece .open ile açılsın (hover yok) */
@media (max-width: 768px) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
    .nav-dropdown .dropdown-menu {
        left: 0;
        transform: none;
        right: 0;
        min-width: auto;
        max-width: none;
    }
}

@media (hover: none) {
    .nav-dropdown:hover .dropdown-menu {
        opacity: 0;
        visibility: hidden;
    }
    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   Sağ üst iletişim ikonları (WhatsApp + Beni Ara)
   ============================================ */
.contact-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-float-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    color: var(--bg-white);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-float-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-2xl);
    color: var(--bg-white);
}

.contact-float-whatsapp {
    background: #25D366;
}

.contact-float-whatsapp:hover {
    background: #20bd5a;
}

.contact-float-phone {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
}

.contact-float-phone:hover {
    background: linear-gradient(135deg, var(--primary-red-light) 0%, var(--primary-red) 100%);
}

.contact-float-location {
    background: #4285F4;
}

.contact-float-location:hover {
    background: #3367D6;
}

.contact-float-btn svg {
    width: 26px;
    height: 26px;
}

.contact-float-label {
    position: absolute;
    right: 100%;
    bottom: 50%;
    transform: translateY(50%);
    margin-right: 0.5rem;
    padding: 0.35rem 0.65rem;
    background: var(--dark);
    color: var(--bg-white);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    border-radius: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.contact-float-btn:hover .contact-float-label {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-float {
        bottom: 1rem;
        right: 1rem;
    }

    .contact-float-btn {
        width: 3.5rem;
        height: 3.5rem;
    }

    .contact-float-btn svg {
        width: 22px;
        height: 22px;
    }

    .contact-float-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ============================================
   Main Content
   ============================================ */
main {
    padding: 3rem 0 4rem;
    min-height: calc(100vh - 300px);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* ============================================
   Cards Grid - Premium Design
   ============================================ */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    width: 100%;
}

@media (max-width: 1200px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

.card {
    background: var(--bg-white);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-red-light);
}

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

.card-header {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--bg-white);
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-header h3 {
    font-size: 1.625rem;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.card-header .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--bg-white);
    margin-top: 0.75rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.card-header .price::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.year-range {
    color: var(--bg-white);
    font-size: 0.9375rem;
    font-style: italic;
    opacity: 0.9;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.card-body {
    padding: 2rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--border-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

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

.card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(185, 28, 28, 0.05));
}

.model-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    padding: 0.375rem 0.875rem;
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    margin-left: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

/* ============================================
   Specification List
   ============================================ */
.spec-list {
    list-style: none;
    margin: 1.5rem 0;
}

.spec-list li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    transition: padding-left var(--transition-fast);
}

.spec-list li:hover {
    padding-left: 0.5rem;
}

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

.spec-list li::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: 900;
    font-size: 1.125rem;
    flex-shrink: 0;
    background: var(--primary-red-lighter);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
}

.spec-list li strong {
    color: var(--dark);
    font-weight: 700;
}

/* ============================================
   Fees Section
   ============================================ */
.fees-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    padding: 1.75rem;
    border-radius: 0.875rem;
    margin-top: 1.5rem;
    border: 1px solid var(--border-color);
}

.fees-title {
    font-weight: 800;
    color: var(--primary-red-dark);
    margin-bottom: 1.25rem;
    font-size: 1.1875rem;
    letter-spacing: -0.3px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: background-color var(--transition-fast);
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    border-radius: 0.5rem;
}

.fee-item:hover {
    background-color: rgba(220, 38, 38, 0.05);
}

.fee-item:last-child {
    border-bottom: none;
    font-weight: 800;
    font-size: 1.1875rem;
    color: var(--primary-red-dark);
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    border-top: 2px solid var(--primary-red);
    margin-top: 0.5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(185, 28, 28, 0.05));
}

.fee-label {
    color: var(--text-secondary);
    font-weight: 500;
    flex: 1;
}

.fee-amount {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.0625rem;
}

.fee-item:last-child .fee-amount {
    color: var(--primary-red-dark);
    font-size: 1.375rem;
}

/* ============================================
   Highlight Box
   ============================================ */
.highlight-box {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(239, 68, 68, 0.05));
    border-left: 4px solid var(--primary-red);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
}

.highlight-box h4 {
    color: var(--primary-red-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 1.0625rem;
}

/* ============================================
   Process Steps
   ============================================ */
.process-steps {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.process-steps h3 {
    color: var(--primary-red-dark);
    margin-bottom: 1.75rem;
    font-size: 1.625rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1.25rem 0 1.25rem 4rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    transition: padding-left var(--transition-base);
}

.steps-list li:hover {
    padding-left: 4.5rem;
}

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

.steps-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1.25rem;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    color: var(--bg-white);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transition: transform var(--transition-base);
}

.steps-list li:hover::before {
    transform: scale(1.1);
}

.steps-list li strong {
    color: var(--primary-red-dark);
    font-weight: 700;
}

/* ============================================
   Intro Text
   ============================================ */
.intro-text {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
    margin: 2rem 0;
    line-height: 1.9;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.intro-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-red), var(--primary-red-dark));
}

.intro-text h2 {
    color: var(--primary-red-dark);
    margin-bottom: 1.25rem;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.intro-text h3 {
    color: var(--primary-red-dark);
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.intro-text strong {
    color: var(--primary-red-dark);
    font-weight: 700;
}

.intro-text ul {
    list-style: none;
    padding-left: 0;
}

.intro-text ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: padding-left var(--transition-fast);
}

.intro-text ul li:hover {
    padding-left: 0.5rem;
}

.intro-text ul li:last-child {
    border-bottom: none;
}

/* ============================================
   Footer - Professional Design
   ============================================ */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--bg-white);
    padding: 3rem 0 2rem;
    text-align: center;
    margin-top: 5rem;
    position: relative;
    border-top: 4px solid var(--primary-red);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-section p,
.footer-section address {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.8;
    font-style: normal;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    font-size: 0.875rem;
    opacity: 0.85;
    font-weight: 500;
}

.footer-bottom a {
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .main-nav ul {
        gap: 0.5rem;
    }

    .main-nav li a {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .contact-info {
        text-align: center;
        align-items: center;
    }

    .contact-info p {
        justify-content: center;
    }

    .logo h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .card-header .price {
        font-size: 2rem;
    }

    .intro-text {
        padding: 1.75rem;
    }

    .intro-text h2 {
        font-size: 1.75rem;
    }

    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    main {
        padding: 2rem 0 3rem;
    }

    .section-title {
        font-size: 1.75rem;
        padding-bottom: 1rem;
    }

    .section-title::after {
        width: 80px;
        height: 4px;
    }

    .card-header {
        padding: 1.5rem 1.25rem;
    }

    .card-body {
        padding: 1.5rem 1.25rem;
    }

    .card-header h3 {
        font-size: 1.375rem;
    }

    .card-header .price {
        font-size: 1.75rem;
    }

    .intro-text {
        padding: 1.5rem;
    }
}

/* ============================================
   Inner Pages - Hero & Content (Hakkımızda, Hizmetler, İletişim)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 1.25rem;
    margin-bottom: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    font-size: 1.0625rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

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

.page-content .intro-text {
    margin-top: 0;
}

.service-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-red);
    transition: all var(--transition-base);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-red-dark);
}

.service-card h3 {
    color: var(--primary-red-dark);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-card {
    background: var(--bg-white);
    border-radius: 1.25rem;
    padding: 2.5rem 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all var(--transition-base);
}

.contact-card:hover {
    border-color: var(--primary-red-light);
    box-shadow: var(--shadow-lg);
}

.contact-card .icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-red-dark));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 1.75rem;
    font-weight: 700;
}

.contact-card h3 {
    color: var(--primary-red-dark);
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-card p, .contact-card address {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
    font-style: normal;
}

.contact-card a.map-link {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a.map-link:hover {
    text-decoration: underline;
}

.contact-map-wrap {
    background: var(--bg-white);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.contact-map-title {
    color: var(--primary-red-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 1.5rem 2rem 0;
}

.contact-map-inner {
    padding: 1.25rem 2rem 2rem;
    min-height: 480px;
}

.contact-map-inner iframe {
    display: block;
    width: 100%;
    height: 450px;
    min-height: 450px;
    border-radius: 0.75rem;
}

.contact-map-footer {
    padding: 0 2rem 1.5rem;
    margin: 0;
    font-size: 1rem;
}

.contact-map-footer a {
    color: var(--primary-red);
    font-weight: 600;
    text-decoration: none;
}

.contact-map-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contact-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-card .icon {
        margin: 0 auto;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }

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

.card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
