/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    --primary-color: #c2661a;
    --primary-dark: #9b4f12;
    --primary-light: #e3a86a;
    --secondary-color: #1c2836;
    --secondary-dark: #111a25;
    --accent-color: #3e6b57;
    --text-dark: #1d1f26;
    --text-light: #586070;
    --bg-light: #f6f2ec;
    --bg-white: #ffffff;
    --border-color: #e4ded4;
    --shadow-sm: 0 8px 20px rgba(17, 26, 37, 0.06);
    --shadow-md: 0 14px 30px rgba(17, 26, 37, 0.08);
    --shadow-lg: 0 18px 40px rgba(17, 26, 37, 0.12);
    --shadow-xl: 0 24px 60px rgba(17, 26, 37, 0.14);
    --transition: all 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 140px 0 110px;
    background-image: url('https://images.unsplash.com/photo-1541976590-713941681591?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(17, 26, 37, 0.82) 0%, rgba(17, 26, 37, 0.48) 60%, rgba(194, 102, 26, 0.55) 100%);
    z-index: 1;
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    padding: 0 2rem;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    gap: 0.85rem;
    text-align: left;
}

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

.hero-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.7rem, 4.4vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.18rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    max-width: 720px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 0.9rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0.5rem 0 0.9rem;
}

.hero-meta {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
}

.btn {
    display: inline-block;
    padding: 0.95rem 1.85rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.01em;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.hero-trust {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.trust-label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: clamp(3.5rem, 6vw, 6.5rem) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-title {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2.1rem, 3vw, 2.7rem);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.6rem;
    letter-spacing: -0.015em;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.services .section-header,
.about .section-header,
.testimonials .section-header,
.contact .section-header {
    text-align: left;
}

.services .section-subtitle,
.about .section-subtitle,
.testimonials .section-subtitle,
.contact .section-subtitle {
    margin-left: 0;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 1.9rem;
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: left;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.3rem;
    bottom: 1.3rem;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17, 26, 37, 0.08);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin: 0 0 0.85rem;
    background: var(--secondary-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 750;
    color: var(--secondary-color);
    margin-bottom: 0.55rem;
    letter-spacing: -0.01em;
}

.service-description {
    color: var(--text-light);
    line-height: 1.65;
    font-size: 1.04rem;
    max-width: 32ch;
}

/* ========================================
   About Section
   ======================================== */
.about {
    position: relative;
    background: linear-gradient(180deg, #f6f2ec 0%, #ffffff 55%, #f6f2ec 100%);
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    z-index: 1;
    opacity: 0.7;
}

.about-background-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 18% 40%, rgba(194, 102, 26, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 78% 70%, rgba(17, 26, 37, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.about::after {
    display: none;
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-main {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
    margin-bottom: 2.25rem;
}

.about-text {
    position: relative;
}

.about-intro {
    margin-bottom: 1.5rem;
}

.about-badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: rgba(194, 102, 26, 0.12);
    color: var(--primary-dark);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.about-heading {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-size: clamp(2rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.15;
    margin-bottom: 0.35rem;
}

.about-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.15rem;
    line-height: 1.75;
}

.about-description strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.about-visual {
    position: relative;
}

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

.stat-card {
    background: var(--bg-white);
    padding: 1.5rem 1.25rem;
    border-radius: 14px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 0.75rem;
    background: var(--secondary-color);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.stat-icon svg {
    width: 26px;
    height: 26px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.35rem;
    line-height: 1.1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.2px;
}

/* ========================================
   Works Section
   ======================================== */
.works {
    position: relative;
    padding: clamp(3rem, 5vw, 5.5rem) 0;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
    background-color: var(--bg-white);
}

.works::before,
.works::after {
    display: none;
}


.works-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.works .section-header {
    margin-bottom: 2rem;
}

.works .section-title {
    color: var(--secondary-color);
    text-shadow: none;
    font-size: 2rem;
}

.works .section-subtitle {
    color: var(--text-light);
    text-shadow: none;
    font-size: 1rem;
}

.works-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto;
}

.work-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    aspect-ratio: 3 / 2;
    cursor: pointer;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
}

.work-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
    filter: saturate(1.05);
}

.work-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 26, 37, 0.78) 100%);
    color: var(--bg-white);
    padding: 0.85rem 1.1rem 1.1rem;
    font-weight: 650;
    letter-spacing: 0.01em;
}

.work-label {
    font-size: 1rem;
    line-height: 1.5;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

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

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--bg-white);
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--bg-white);
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border-radius: 50%;
    line-height: 1;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--bg-white);
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials {
    position: relative;
    background: #f6f2ec;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 35%, rgba(194, 102, 26, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 75% 65%, rgba(17, 26, 37, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.testimonials::after {
    display: none;
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    background-color: var(--bg-white);
    padding: 1.85rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: left;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
}

.testimonial-stars {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-author strong {
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.testimonial-author span {
    color: var(--text-light);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    position: relative;
    background-color: var(--bg-white);
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color), var(--primary-light));
    z-index: 1;
}

.contact::after {
    content: '';
    position: absolute;
    top: 10%;
    left: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    align-items: start;
}

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

.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    padding: 1.4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
}

.contact-card-body h3 {
    margin: 0 0 0.35rem;
    color: var(--secondary-color);
    font-size: 1.1rem;
    letter-spacing: -0.01em;
}

.contact-card-body p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    flex-shrink: 0;
}

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

.contact-icon.phone { background: var(--primary-color); }
.contact-icon.hours { background: var(--accent-color); }
.contact-icon.rating { background: var(--primary-light); }

.contact-card-body a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-card-body a:hover {
    color: var(--primary-dark);
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-small {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0.15rem 0 0;
}

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

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form-container {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a1f2e 0%, #1f2937 100%);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(217, 119, 6, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    color: var(--bg-white);
    margin: 0;
    font-weight: 700;
}

.footer-section {
    position: relative;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-light);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: var(--transition);
    padding-left: 0;
    position: relative;
}

.footer-section ul li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.footer-section ul li:hover {
    color: var(--primary-light);
    padding-left: 20px;
}

.footer-section ul li:hover::before {
    opacity: 1;
    left: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ========================================
   Mobile Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        gap: 2rem;
    }

    .trust-number {
        font-size: 2rem;
    }

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

    .section-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
        margin-bottom: 3rem;
    }

    .about-heading {
        font-size: 1.75rem;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .stat-icon svg {
        width: 25px;
        height: 25px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .works {
        padding: 2rem 0;
        min-height: auto;
    }

    .works .section-header {
        margin-bottom: 1.5rem;
    }

    .works .section-title {
        font-size: 1.75rem;
    }

    .works-gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.75rem;
    }

    .work-item:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .lightbox-image {
        max-width: 95%;
        max-height: 85%;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 2.5rem;
        width: 45px;
        height: 45px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 2.5rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }

    .testimonials-slider {
        padding: 0 1rem;
    }

    .testimonial-card {
    padding: 2rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .footer-logo-img {
        height: 50px;
        margin: 0 auto;
    }

    .footer-logo h3 {
        font-size: 1.25rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }

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

    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .footer-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-section ul li {
        margin-bottom: 0.75rem;
        padding-left: 0;
    }

    .footer-section ul li::before {
        display: none;
    }

    .footer-section ul li:hover {
        padding-left: 0;
        transform: scale(1.05);
    }

    .footer-section a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
        line-height: 1.6;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .trust-label {
        font-size: 0.9rem;
    }

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

    .service-card,
    .contact-form-container {
        padding: 1.5rem;
    }

    .about-main {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .about-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .works {
        padding: 1.5rem 0;
    }

    .works .section-header {
        margin-bottom: 1rem;
    }

    .works .section-title {
        font-size: 1.5rem;
    }

    .works .section-subtitle {
        font-size: 0.9rem;
    }

    .works-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }

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

    .footer-logo h3 {
        font-size: 1.1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    .footer-section ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .footer-section a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.8rem;
    }
}

/* ========================================
   Accessibility & Print Styles
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero {
        background-attachment: scroll;
    }

    .work-item:hover {
        transform: none !important;
    }

    .work-item:hover img {
        transform: none !important;
    }
}

@media print {
    .navbar,
    .hero-cta,
    .contact-form-container,
    .footer {
        display: none;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

