/* Gallery Page larger visuals */
.gallery-page .gallery-container {
    max-width: 1200px;
}

.gallery-page .gallery-slider {
    height: 620px;
}

@media (max-width: 768px) {
    .gallery-page .gallery-slider { height: 420px; }
}

@media (max-width: 480px) {
    .gallery-page .gallery-slider { height: 360px; }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Brand variables - lion / Aslan theme */
:root {
    --brand-red: #c82333; /* headings (preserve) */
    /* change gold variables to a dark, elegant red for brand accents */
    --brand-gold: #8b0f1a; /* deep red (replaces gold where used) */
    --brand-gold-dark: #6d0b13; /* darker deep red for gradients/hover */
    --brand-dark: #1a1a1a; /* deep neutral */
    --brand-contrast: #ffffff;
    --header-height: 56px; /* default header height used for positioning mobile menu */
}

/* Cross-browser normalization for buttons/inputs */
button, input, select, textarea {
    font-family: inherit;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

/* Flex gap fallback using margins when gap unsupported */
.no-flex-gap .nav-menu > li { margin-right: 2rem; }
.no-flex-gap .nav-menu > li:last-child { margin-right: 0; }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

/* Brand color for Bayrampaşa Arslan Nakliyat - headings only */
h1, h2, h3 {
    color: #c82333; /* warm red, keeps body text dark for legibility */
}


h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    line-height: 1.4;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: var(--brand-contrast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168,114,12,0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--brand-gold);
    border: 2px solid var(--brand-gold);
}

.btn-secondary:hover {
    background: var(--brand-gold);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: var(--brand-gold) !important; /* enforce requested brand deep red */
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .header {
        background: var(--brand-gold) !important;
        backdrop-filter: none;
        --header-height: 48px; /* mobile header height override */
    }
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--brand-gold);
    margin: 0;
    font-size: 1.8rem;
}

/* Make the logo visually larger without growing the navbar.
   We place the image absolutely inside a fixed-height container so
   it can overflow visually while the header/layout height stays stable. */
.nav-logo {
    position: relative;
    height: 56px; /* keep navbar height consistent */
    display: flex;
    align-items: center;
    overflow: visible; /* allow the larger img to overflow visually */
}

.logo-link img {
    position: absolute; /* remove from normal flow so it won't stretch the nav */
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 85px; /* visual height (match index) */
    width: auto;
    max-width: 160px;
    display: block;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: var(--brand-gold-dark);
}

@media (max-width: 768px) {
    .nav-logo { height: 48px; }
    .logo-link img { height: 72px; max-width: 120px; }
}

@media (max-width: 480px) {
    .nav-logo { height: 44px; }
    .logo-link img { height: 56px; max-width: 100px; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* reserve space so the absolutely-positioned logo won't cover the menu */
.nav-menu { margin-left: 180px; }

.nav-link {
    text-decoration: none;
    color: #fff; /* default white on brand header */
    font-weight: 500;
    transition: all 0.18s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-gold); /* brand-red text on hover */
    background: var(--brand-contrast); /* white background so red text is visible */
    border-radius: 6px;
    padding: 6px 10px;
}

/* disable the old underline for active state to avoid contrast issues */
.nav-link.active::after {
    content: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.01) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.areas-controls {
    margin-top: 1rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    /* brand red gradient for icons */
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.service-card p {
    margin-bottom: 1.2rem;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Ensure service buttons align at the bottom across cards */
.service-card .btn {
    margin-top: auto;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: #f8f9fa;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.areas-dropdown {
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
    overflow: hidden;
}

.areas-dropdown .areas-grid {
    padding: 16px;
}

.areas-dropdown::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e6ebf2, transparent);
}

.areas-note {
    background: #f7f9fc;
    color: #2c3e50;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto 16px auto;
}

.areas-note .btn {
    padding: 10px 16px;
    border-radius: 8px;
}

.areas-note-text {
    font-weight: 600;
}

@media (max-width: 640px) {
    .areas-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

.area-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.area-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Districts List */
.districts-list {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #c82333;
}

.districts-list strong {
    color: #c82333;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.districts-list p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar { display: none; }

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.testimonial-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--brand-gold);
    background: white;
    color: var(--brand-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.testimonial-nav:hover {
    background: var(--brand-gold);
    color: white;
    box-shadow: 0 8px 20px rgba(168,114,12,0.18);
}

/* Google Reviews */
.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.google-review-card {
    background: #fff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 8px 24px rgba(16,24,40,0.06);
}

.google-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.google-review-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f4f8;
}

.google-review-name {
    font-weight: 600;
    color: #2c3e50;
}

.google-review-rating {
    color: var(--brand-red);
    margin-bottom: 6px;
}

/* Star visuals inside testimonial or review spans */
.testimonial-card span,
.google-review-card span,
.google-review-rating span {
    color: var(--brand-red);
}

.google-reviews-placeholder {
    background: #f7f9fc;
    border: 1px dashed #cfd6e4;
    color: #506176;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    flex: 0 0 360px;
    min-height: 260px;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Remove decorative quote mark */
.testimonial-card::before { content: none; }

.testimonial-content p {
    font-style: normal;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--brand-red);
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c82333;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #c82333;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    padding: 120px 0 60px;
    /* solid band distinct from navbar — no gradient as requested */
    background: #c82333; /* user's requested page header color */
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
    background: white;
}

.service-detail {
    margin-bottom: 4rem;
    position: relative;
}

.service-detail h2 {
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #c82333;
    position: relative;
    font-size: 2.5rem;
    font-weight: 700;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.service-detail-text h3 {
    color: #c82333;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.service-detail-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detail-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-detail-text li strong {
    color: #333;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Content */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-section {
    margin-bottom: 4rem;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision */
.mission-vision {
    margin: 4rem 0;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.mission-card,
.vision-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i,
.vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

/* Values Section */
.values-section {
    margin: 4rem 0;
}

.values-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    margin: 4rem 0;
}

.team-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.team-section > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-item {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.team-item p {
    color: #666;
}

/* Statistics Section */
.stats-section {
    margin: 4rem 0;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    padding: 4rem 0;
    border-radius: 12px;
}

.stats-section h2 {
    text-align: center;
    color: white;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Certificates Section */
.certificates-section {
    margin: 4rem 0;
}

.certificates-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certificate-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.certificate-item:hover {
    transform: translateY(-5px);
}

.certificate-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.certificate-icon i {
    font-size: 1.8rem;
    color: white;
}

.certificate-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.certificate-item p {
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info-section > p {
    margin-bottom: 2rem;
    color: #666;
}

.contact-info-cards {
    margin-bottom: 3rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--brand-gold);
    text-decoration: none;
}

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

.contact-details span {
    color: #666;
    font-size: 0.9rem;
}

/* Social Media Section */
.social-media-section {
    margin-top: 2rem;
}

.social-media-section h3 {
    color: #333;
    margin-bottom: 1rem;
}

.social-media-section p {
    margin-bottom: 1.5rem;
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link.facebook:hover {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
    border-color: transparent;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
	border-color: transparent;
}

.social-link:hover {
    background: var(--brand-red);
    color: white;
}

.social-link.twitter:hover {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
    border-color: transparent;
}

.social-link.linkedin:hover {
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
    border-color: transparent;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.map-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1rem;
}

.map-section > p {
    text-align: center !important;
    margin-bottom: 3rem;
    color: #666;
    max-width: 600px;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    width: 100%;
}

.map-description {
    text-align: center !important;
    margin: 0 auto 3rem auto !important;
    color: #666;
    max-width: 600px;
    display: block;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--brand-gold);
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    color: #333;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--brand-gold);
}

.cta-section .btn-primary:hover {
    background: #fff1f1; /* subtle warm hover using brand tint */
    transform: translateY(-2px);
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--brand-gold);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--brand-gold);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #ccc;
}

.contact-info i {
    color: var(--brand-gold);
    width: 16px;
}

.footer .social-links {
    margin-top: 1rem;
}

.footer .social-link {
    background: #333;
    color: #ccc;
}

.footer .social-link:hover {
    background: var(--brand-red);
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
    left: -100%;
    top: var(--header-height); /* place menu right under the fixed header */
        flex-direction: column;
        background-color: var(--brand-gold); /* use brand deep red on mobile */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.08);
        padding: 1.5rem 0;
        margin-left: 0; /* ensure full width on small screens */
        z-index: 1500;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }

    /* make hamburger bars visible on brand red background */
    .hamburger .bar {
        background: #fff;
    }

    /* mobile: keep links white and remove large white hover blocks */
    .nav-menu .nav-link {
        color: #fff;
        display: block;
        padding: 8px 16px;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255,255,255,0.06);
        color: #fff;
        border-radius: 6px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Animation Classes - Disabled for full page view */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages (brand-tinted) */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.message.success {
    background: #fff1f1; /* very light brand tint */
    color: var(--brand-gold-dark);
    border: 1px solid rgba(139,15,26,0.12);
}

.message.error {
    background: #fdecec; /* light error tint using brand */
    color: var(--brand-gold-dark);
    border: 1px solid rgba(139,15,26,0.18);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Scroll offset for fixed header */
.service-detail {
    scroll-margin-top: 80px;
}

/* Focus Styles for Accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--brand-gold);
    outline-offset: 2px;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #25D366; /* restore green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    color: white;
    font-size: 28px;
}

.whatsapp-button .whatsapp-text {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-button .whatsapp-text::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--brand-gold);
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-button i {
        font-size: 24px;
    }
    
    .whatsapp-button .whatsapp-text {
        display: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-section,
    .whatsapp-button {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Photo Gallery Styles */
.photo-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Slider gallery styles (box inside, horizontal scroll/slide) */
.gallery-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    overflow: hidden;
}

/* Improve touch interactions on mobile: allow horizontal pan gestures, enable momentum scrolling where supported */
.gallery-slider, .gallery-container {
    touch-action: pan-y; /* allow vertical scroll by default, horizontal handled by JS swipe */
    -webkit-overflow-scrolling: touch; /* smooth momentum on iOS */
}

/* Prevent images/videos from capturing pointer events that would block swipe gestures */
.gallery-image, .gallery-video {
    -webkit-user-drag: none;
    touch-action: manipulation;
}

.gallery-slide {
    min-width: 100%;
    flex: 0 0 100%; /* ensure each slide occupies full width of container */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gallery-image {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    display: block; /* avoid inline spacing/rendering quirks */
}

.gallery-video {
    max-width: 100%;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

/* Gallery controls and dots (already exist) */
.gallery-controls { margin-top: 12px; display:flex; justify-content:center; gap:12px; }

/* Modal styles for slider */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.gallery-modal .modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal .modal-content #modalMedia img,
.gallery-modal .modal-content #modalMedia video {
    max-width: 100%;
    max-height: 90vh;
    display: block;
}

.gallery-modal.show { display: flex; }

.gallery-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.gallery-nav {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: var(--brand-gold);
    color: white;
    transform: scale(1.1);
}

.gallery-nav i {
    font-size: 18px;
}

.gallery-dots {
    /* dots disabled per user request - keep in DOM for backward compatibility but hide visually */
    display: none !important;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--brand-gold);
    transform: scale(1.2);
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--brand-gold);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.modal-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.modal-nav-btn:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: scale(1.1);
}

.modal-nav-btn i {
    font-size: 20px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .photo-gallery {
        padding: 60px 0;
    }
    
    .gallery-slider {
        height: 350px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-nav i {
        font-size: 14px;
    }
    
    .modal-content {
        width: 95%;
        height: 85%;
        padding: 10px;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .modal-nav-btn i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .gallery-slider {
        height: 300px;
    }
    
    .gallery-nav {
        width: 35px;
        height: 35px;
        padding: 0 10px;
    }
    
    .gallery-nav i {
        font-size: 12px;
    }
}

/* Location Map */
.location-map {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.location-map iframe {
  width: 100%;
  max-width: 600px;
  height: 300px;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
    color: white;
    border: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 15, 26, 0.4);
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 25px rgba(139, 15, 26, 0.6);
}

.back-to-top i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 18px;
    }
}
