/* 
 * Çetin Otomotiv - KGM Enes Oto Style
 * Premium Automotive Design
 */

/* ===== CSS Variables ===== */
:root {
    /* KGM SsangYong Colors - Correct Match */
    --primary: #0055a5;          /* KGM Blue */
    --primary-light: #0066cc;
    --primary-dark: #003d7a;
    --primary-rgb: 0, 85, 165;
    
    /* Light Theme - White */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f0f2f5;
    --bg-section: #fafbfc;
    
    /* Dark sections */
    --bg-dark: #0a1628;
    --bg-darker: #060f1a;
    --bg-navy: #0d1b2a;
    
    /* Cards */
    --bg-card: #ffffff;
    --bg-card-hover: #f5f7fa;
    --border-color: #e5e7eb;
    --border-light: #f0f0f0;
    
    /* Text */
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Accent */
    --accent-blue: #0055a5;
    --whatsapp: #25D366;
    --phone-blue: #0088cc;
    
    /* Effects */
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 10px 40px rgba(0, 85, 165, 0.25);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-white);
}

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

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

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 24px auto 0;
}

.text-blue { color: var(--primary) !important; }
.text-white { color: var(--text-white) !important; }
.text-dark { color: var(--text-dark) !important; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-white);
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 85, 165, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-white);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .top-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.top-bar {
    background: var(--bg-navy);
    padding: 10px 0;
    border-bottom: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.authorized-badge {
    background: linear-gradient(135deg, #00a86b, #00c77f);
    color: var(--text-white);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    padding: 6px 14px;
    border-radius: 4px;
}

.authorized-badge i {
    font-size: 0.9rem;
    color: var(--text-white);
}

.location-badge {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    margin-left: 15px;
}

.location-badge i {
    color: var(--primary-light);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-link:hover {
    color: var(--text-white);
}

.top-link.whatsapp-link {
    color: var(--whatsapp);
}

.top-link.whatsapp-link:hover {
    color: #1fa855;
}

.navbar {
    background: transparent;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled .navbar {
    padding: 12px 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    transition: var(--transition);
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
}

.header.scrolled .logo-main {
    color: var(--primary);
}

.header.scrolled .logo-sub {
    color: var(--text-gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-white);
    position: relative;
    transition: var(--transition);
}

.header.scrolled .nav-link {
    color: var(--text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

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

.dropdown-menu li a {
    display: block;
    padding: 12px 24px;
    font-size: 0.9rem;
    color: var(--text-body);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.nav-btn {
    background: var(--primary);
    color: var(--text-white) !important;
    padding: 14px 30px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 15px;
}

.nav-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

.nav-btn::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 100;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition);
}

.header.scrolled .nav-toggle span {
    background: var(--text-dark);
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-slider .swiper-wrapper {
    height: 100%;
}

.hero-slider .swiper-slide {
    height: 100%;
    width: 100%;
}

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

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-navy);
}

.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,22,40,0.9) 0%, rgba(10,22,40,0.6) 40%, rgba(10,22,40,0.3) 100%);
}

/* Hero Content - CSS Grid ile sabit layout */
.hero-content {
    position: absolute;
    z-index: 2;
    max-width: 750px;
    left: 5%;
    top: 140px;
    bottom: 80px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    width: fit-content;
    align-self: start;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--text-white);
}

.hero-title .highlight {
    color: var(--text-white);
    display: block;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    line-height: 1.8;
    max-width: 550px;
    align-self: start;
}

/* Butonlar her zaman en altta - grid row 4 */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-self: end;
}

.hero-slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-nav .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    border: 2px solid rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition);
    border-radius: 50%;
}

.hero-slider-nav .swiper-pagination-bullet-active {
    background: var(--text-white);
    border-color: var(--text-white);
    width: 50px;
    border-radius: 7px;
}

/* ===== Stats Section ===== */
.stats-section {
    background: var(--bg-white);
    padding: 35px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: var(--border-color);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* ===== Brands Strip ===== */
.brands-strip {
    background: var(--bg-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.brands-strip .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.brand-item {
    opacity: 1;
    transition: var(--transition);
    filter: none;
}

.brand-item:hover {
    opacity: 1;
    filter: none;
    transform: scale(1.1);
}

.brand-item img {
    height: 50px;
    width: 100px;
    object-fit: contain;
}

.brand-item span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ===== Services Section ===== */
.services-section {
    padding: 55px 0;
    background: var(--bg-white);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 30px;
}

.services-header .section-title {
    max-width: 600px;
}

.services-header .section-title h2 {
    margin-bottom: 20px;
    position: relative;
    color: var(--text-dark);
}

.services-header .section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.services-header .section-title p {
    color: var(--text-gray);
}

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

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: visible;
    transition: var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.service-card-image {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-white) 0%, transparent 50%);
    z-index: 5;
    pointer-events: none;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card-image .service-icon-overlay {
    z-index: 10;
}

.service-card-image i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.3;
}

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

.service-card-content {
    padding: 35px;
}

.service-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 85, 165, 0.1);
    border: 1px solid rgba(0, 85, 165, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-card-icon i {
    font-size: 1.8rem;
    color: var(--primary);
}

.service-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--text-dark);
}

.service-card-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card-link i {
    transition: var(--transition);
}

.service-card-link:hover {
    color: var(--primary-light);
}

.service-card-link:hover i {
    transform: translateX(8px);
}

/* Clickable Service Card */
.service-card-clickable {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card-clickable:hover {
    text-decoration: none;
}

.service-card > .service-icon-overlay {
    position: absolute;
    top: 195px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-icon-overlay i {
    font-size: 1.4rem;
    color: var(--text-white);
}

.service-card-clickable:hover .service-icon-overlay {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* ===== Why Us Section ===== */
.why-section {
    padding: 55px 0;
    background: var(--bg-light);
    position: relative;
}

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

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

.why-card {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.why-card:hover::after {
    width: 100%;
}

.why-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: var(--shadow-blue);
}

.why-icon i {
    font-size: 2.2rem;
    color: var(--text-white);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    font-weight: 800;
    color: var(--text-dark);
}

.why-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 55px 0;
    background: linear-gradient(135deg, var(--bg-navy) 0%, #1a365d 50%, #0d1b2a 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 85, 165, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 85, 165, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: 55px 0;
    background: var(--bg-white);
}

.faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    padding: 28px 35px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-question i {
    font-size: 1rem;
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content {
    padding: 0 35px 28px;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 120px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    background: rgba(0, 85, 165, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.contact-item-content h4 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.contact-item-content a:hover {
    color: var(--primary);
}

/* ===== Form Styles ===== */
.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 85, 165, 0.1);
}

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

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888888' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

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

/* ===== Page Header ===== */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--bg-navy) 0%, #1a365d 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 20px 20px;
    opacity: 0.5;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    position: relative;
    color: var(--text-white);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--text-white);
}

.breadcrumb span {
    color: var(--text-white);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-navy);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main {
    padding: 35px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 60px;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 55px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 14px;
}

.footer-socials a {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 28px;
    color: var(--text-white);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: 8px;
}

.footer-contact ul li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact ul li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1rem;
}

.footer-contact ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: var(--transition);
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn.whatsapp:hover::before {
    border-color: rgba(37, 211, 102, 0.5);
}

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

.float-btn.phone:hover::before {
    border-color: rgba(0, 85, 165, 0.5);
}

.float-btn:hover {
    transform: scale(1.15);
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

.float-btn.whatsapp {
    animation: pulse 2s infinite;
}

/* ===== Alerts ===== */
.messages-wrapper {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    z-index: 999;
}

.alert {
    padding: 16px 0;
}

.alert .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-success {
    background: rgba(0, 85, 165, 0.9);
}

.alert-error {
    background: rgba(220, 53, 69, 0.9);
}

.alert-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
}

.alert-close:hover {
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 600px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 0;
        transition: var(--transition);
        border-left: 1px solid var(--border-color);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 18px 0;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-btn {
        margin: 20px 0 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
        background: transparent;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 550px;
    }
    
    .hero-slide {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .top-bar-left {
        display: none;
    }
    
    .hero-content {
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-slide-bg::after {
        background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 54px;
        height: 54px;
        font-size: 1.3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Section Divider ===== */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 0;
}

.section-divider-dark {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

/* ===== Button Outline Dark ===== */
.btn-outline-dark {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 32px;
}

.btn-outline-dark:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue);
}

/* ===== Scroll Animations ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.6s; }

/* ===== Featured Brands Section (KGM Style) ===== */
.featured-brands-section {
    padding: 35px 0;
    background: var(--bg-gray);
}

.featured-brands-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-brands-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 800;
}

.featured-brands-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin-top: 15px;
}

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

.featured-brand-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.featured-brand-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-brand-image {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-gray) 100%);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.featured-brand-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.featured-brand-image i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.featured-brand-card:hover .featured-brand-image img {
    transform: scale(1.1);
}

.featured-brand-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-brand-content {
    padding: 25px;
    text-align: center;
}

.featured-brand-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.featured-brand-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== News/Blog Section (KGM Style) ===== */
.news-section {
    padding: 55px 0;
    background: var(--bg-white);
}

.news-header {
    text-align: center;
    margin-bottom: 20px;
}

.news-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 15px;
}

.news-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px auto 0;
}

.news-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.news-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.news-card-image {
    height: 180px;
    overflow: hidden;
    background: var(--bg-gray);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card-image i {
    font-size: 3rem;
    color: var(--text-gray);
    opacity: 0.3;
}

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

.news-card-content {
    padding: 25px;
}

.news-card-date {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-card-link:hover {
    color: var(--primary-light);
}

.news-card-link i {
    transition: var(--transition);
}

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

/* ===== Footer Form Section (KGM Style) ===== */
.footer-form-section {
    background: var(--bg-navy);
    padding: 25px 0;
    border-top: 3px solid var(--primary);
}

.footer-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-form-info h3 {
    font-size: 2rem;
    color: var(--text-white);
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-form-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.footer-form-contact a {
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
}

.footer-form-contact a i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.footer-form-contact a:hover {
    color: var(--text-white);
}

.footer-form-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 40px;
}

.footer-form-box h4 {
    font-size: 1.3rem;
    color: var(--text-white);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-form-box input,
.footer-form-box textarea,
.footer-form-box select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-form-box input:focus,
.footer-form-box textarea:focus,
.footer-form-box select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
}

.footer-form-box textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-form-box button {
    width: 100%;
    margin-top: 10px;
}

/* Service Cards with Images */
.services-with-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card-img {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 85, 165, 0.15);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: visible;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    border-radius: 16px 16px 0 0;
}

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

.service-icon-overlay {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 85, 165, 0.3);
    z-index: 15;
}

.service-icon-overlay i {
    color: white;
    font-size: 1.25rem;
}

.service-content {
    padding: 2rem;
    padding-top: 2.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-content .service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-content .service-link:hover {
    gap: 0.75rem;
}

/* Service Content Article Styles (SEO Content) */
.service-content-article h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.service-content-article h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 1.75rem 0 0.75rem;
}

.service-content-article h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin: 1.5rem 0 0.5rem;
}

.service-content-article p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.service-content-article ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-content-article li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    position: relative;
}

.service-content-article li::marker {
    color: var(--primary);
}

.service-content-article strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Brand Cards with Official Logos */
.brand-card-official {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.brand-card-official:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 85, 165, 0.12);
    border-color: var(--primary);
}

.brand-card-official.authorized {
    background: linear-gradient(135deg, rgba(0, 168, 107, 0.05) 0%, rgba(0, 199, 127, 0.05) 100%);
    border-color: rgba(0, 168, 107, 0.3);
}

.brand-logo-box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.brand-logo-box img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand-card-official:hover .brand-logo-box img {
    transform: scale(1.1);
}

.brand-card-official h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.brand-card-official p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.brand-badge-auth {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #00a86b, #00c77f);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.brand-card-official .btn-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Team Photo Section */
.team-photo-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.team-photo-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
}

.team-photo-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-photo-overlay p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Responsive for new sections */
@media (max-width: 992px) {
    .featured-brands-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-with-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-brands-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-form-row {
        grid-template-columns: 1fr;
    }
    
    .services-with-images {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 180px;
    }
    
    .team-photo-section img {
        height: 300px;
    }
}
