/**
 * Otohane - Kurumsal Web Sitesi CSS
 * Premium Light Theme
 */

/* ==========================================
   CSS Variables
   ========================================== */
:root {
    /* Colors - Premium Light Theme (Burgundy/Red) */
    --primary: #9D2235;
    --primary-dark: #7A1A2B;
    --primary-light: #C8102E;
    --secondary: #1a1a2e;
    --dark: #0f0f1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --accent: #9D2235;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Typography */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-md: 0 6px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-red: 0 5px 20px rgba(157, 34, 53, 0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius: 15px;
    --radius-lg: 25px;
    --radius-xl: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
}

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

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

/* ==========================================
   Preloader
   ========================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid var(--gray-200);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background: var(--gray-100);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-200);
}

.top-bar a {
    color: var(--gray-600);
}

.top-bar a:hover {
    color: var(--primary);
}

.top-bar .social-links a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    color: var(--gray-600);
    margin-left: 8px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ==========================================
   Navbar
   ========================================== */
.navbar {
    background: var(--white) !important;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-lg);
}

.logo-img {
    max-height: 50px;
    width: auto;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -1px;
}

.brand-text {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 600;
    padding: 10px 20px !important;
    position: relative;
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.navbar .btn-primary {
    background: var(--primary);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: var(--radius);
}

.navbar .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    background: transparent;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}


.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide .container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Hero with slider image - content is in white box, no need for white text */

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 50px;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    border-radius: 30px;
    animation: heroFadeIn 1s ease-out;
}

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


.hero-subtitle {
    display: inline-block;
    color: var(--primary-light);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    padding: 0 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: var(--primary-light);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.hero-subtitle::before {
    left: 0;
}

.hero-subtitle::after {
    right: 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.8);
}

.hero-title span {
    color: var(--primary-light);
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    text-decoration: none;
    min-width: 200px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transition: left 0.5s ease;
}

.btn-hero-primary span,
.btn-hero-primary i {
    position: relative;
    z-index: 1;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0,0,0,0.7);
    color: var(--white);
}

.btn-hero-primary:hover::before {
    left: 0;
}

.btn-hero-primary:active {
    transform: translateY(-2px) scale(0.98);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.btn-hero-secondary span,
.btn-hero-secondary i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(0,0,0,0.7);
}

.btn-hero-secondary:hover::before {
    transform: translateY(0);
}

.btn-hero-secondary:hover span,
.btn-hero-secondary:hover i {
    color: var(--gray-900);
}

.btn-hero-secondary:active {
    transform: translateY(-2px) scale(0.98);
}

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

.btn-hero-outline:hover {
    background: var(--gray-800);
    color: var(--white);
    transform: translateY(-3px);
}

/* Hero scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 30px; }
}

/* ==========================================
   Section Styling
   ========================================== */
section {
    padding: 100px 0;
}

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

.section-subtitle {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   Features Section
   ========================================== */
.features-section {
    background: var(--gray-50);
    padding: 80px 0;
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-red);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--dark);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gray-900);
}

.feature-box p {
    color: var(--gray-500);
    margin-bottom: 0;
}

/* ==========================================
   Premium Stats Section
   ========================================== */
.stats-section {
    background: var(--gray-50);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-box::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gray-300), transparent);
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

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

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow);
}

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

.service-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.service-content p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.service-price small {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray-500);
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery-section {
    background: var(--gray-50);
    padding: 100px 0;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    height: 280px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 24px;
}

.gallery-info h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-info span {
    color: var(--primary);
    font-size: 14px;
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
    background: var(--white);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

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

.testimonial-card.google-review {
    border-color: rgba(234, 67, 53, 0.3);
}

.testimonial-card.google-review:hover {
    border-color: #ea4335;
    box-shadow: 0 10px 40px rgba(234, 67, 53, 0.15);
}

.google-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ea4335, #fbbc05, #34a853, #4285f4);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.testimonial-quote {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 3px solid var(--primary);
}

.testimonial-avatar-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-info h5 {
    color: var(--gray-900);
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: var(--gray-500);
    font-size: 14px;
}

.star-rating {
    color: var(--primary);
    font-size: 14px;
    margin-top: 5px;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq-section {
    background: var(--gray-50);
    padding: 100px 0;
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius) !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: var(--white);
    color: var(--gray-900);
    font-weight: 600;
    padding: 20px 25px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary);
}

.accordion-button::after {
    filter: none;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(70%) sepia(50%) saturate(500%) hue-rotate(10deg);
}

.accordion-body {
    background: var(--white);
    color: var(--gray-600);
    padding: 0 25px 25px;
}

/* ==========================================
   CTA Section
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000' fill-opacity='0.1' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-content h2 {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(0,0,0,0.7);
    margin-bottom: 30px;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-900);
    color: var(--white);
    padding: 18px 40px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
}

.btn-cta-white:hover {
    background: var(--gray-800);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ==========================================
   Page Header
   ========================================== */
.page-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header h1 {
    font-size: 48px;
    color: var(--gray-900);
    margin-bottom: 15px;
    position: relative;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
}

.breadcrumb-item {
    color: var(--gray-500);
}

.breadcrumb-item a {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--gray-700);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-400);
}

/* ==========================================
   Footer
   ========================================== */
footer {
    background: var(--gray-100);
    color: var(--gray-700);
    padding-top: 80px;
    border-top: 1px solid var(--gray-200);
}

.footer-widget h4 {
    color: var(--gray-900);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-about p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray-600);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

.footer-contact-item i {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: var(--gray-600);
}

.footer-contact-item strong {
    color: var(--gray-900);
    display: block;
    margin-bottom: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 18px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--gray-200);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ==========================================
   Back to Top Button
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    border: none;
    box-shadow: var(--shadow-red);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ==========================================
   Trust Badges
   ========================================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.trust-badge:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-red);
}

.trust-badge-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 20px;
}

.trust-badge-text strong {
    display: block;
    color: var(--gray-900);
    font-size: 16px;
}

.trust-badge-text small {
    color: var(--gray-500);
    font-size: 12px;
}

/* ==========================================
   Buttons
   ========================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
    color: var(--dark);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: var(--radius);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

/* ==========================================
   Form Styles
   ========================================== */
.form-control,
.form-select {
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-900);
    padding: 15px 20px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--primary);
    color: var(--gray-900);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

.form-label {
    color: var(--gray-700);
    font-weight: 600;
    margin-bottom: 10px;
}

/* ==========================================
   Cards
   ========================================== */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 25px;
}

.card-body {
    padding: 25px;
}

/* ==========================================
   Alerts
   ========================================== */
.alert-info {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary-dark);
}

/* ==========================================
   Service Placeholder
   ========================================== */
.service-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gray-400);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 40px;
    }

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

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

    .stat-box::after {
        display: none;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .brand-text {
        font-size: 20px;
    }
}

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

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

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

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

    .btn-hero {
        padding: 15px 30px;
        font-size: 14px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

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

    .brand-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
}

/* ==========================================
   Light Background Sections
   ========================================== */
.bg-light {
    background: var(--gray-50) !important;
}

.text-muted {
    color: var(--gray-500) !important;
}

/* Services Overview on services page */
.services-overview {
    background: var(--white);
}

.services-list-section {
    background: var(--gray-50) !important;
}

/* Category title */
.category-title {
    font-size: 24px;
    font-weight: 700;
}

.category-title span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important;
    color: var(--dark) !important;
}

/* Service meta */
.service-meta {
    margin-bottom: 15px;
    color: var(--gray-500);
    font-size: 14px;
}

/* Pricing note */
.pricing-note {
    background: var(--white);
}

.pricing-note .bg-white {
    background: var(--white) !important;
}

.pricing-note h3 {
    color: var(--gray-900);
}

/* Reviews Stats */
.reviews-stats {
    background: var(--gray-50);
}

.reviews-stats .card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.reviews-list {
    background: var(--white);
}

/* Avatar Circle */
.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--dark);
}

.review-card .card {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

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

/* Contact Page */
.contact-info-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.contact-form {
    background: var(--white);
}

/* Map */
.map-container iframe {
    filter: none;
}

/* Progress bars */
.progress {
    background-color: var(--gray-200);
}

.progress-bar {
    background-color: var(--primary);
}

/* Tables */
.table {
    color: var(--gray-700);
}

.table-hover tbody tr:hover {
    background-color: var(--gray-50);
}

/* Badges */
.badge.bg-primary {
    background: var(--primary) !important;
    color: var(--dark);
}

.badge.bg-success {
    background: #10b981 !important;
}

.badge.bg-warning {
    background: var(--primary) !important;
    color: var(--dark);
}

/* Modal */
.modal-content {
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
}

/* Gallery Page */
.gallery-grid .gallery-item {
    border: 1px solid var(--gray-200);
}

/* Contact form on white bg */
.contact-section {
    background: var(--gray-50);
}

/* About section */
.about-section {
    background: var(--white);
}

/* Why choose us */
.why-us-section {
    background: var(--gray-50);
}

/* ==========================================
   Responsive Design - Hero Section
   ========================================== */
@media (max-width: 768px) {
    .hero-content {
        padding: 40px 25px;
        margin: 0 15px;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 15px;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        min-width: auto;
        justify-content: center;
        padding: 14px 30px;
        font-size: 13px;
        letter-spacing: 1px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 35px;
        font-size: 14px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 14px;
    }
}

/* ==========================================
   Default Logo Styles (When Images Missing)
   ========================================== */
.default-logo {
    object-fit: contain !important;
    padding: 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
}

.service-image .default-logo {
    padding: 30px;
}

.gallery-item .default-logo {
    padding: 40px;
    background: var(--gray-50);
}

.testimonial-avatar.default-logo {
    padding: 8px;
    background: var(--white);
}

.hero-bg-default {
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-color: var(--gray-100);
}

.hero-bg-default + .hero-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 100%);
}
