/* ═══════════════════════════════════════════════════
   K&S Junk Removal & Hauling - Classic Blue & Silver Design
   Professional Junk Removal - Sacramento
   ═══════════════════════════════════════════════════ */

/* Load fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&display=swap');

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

:root {
    /* Blue Palette - Classic Professional */
    --blue-primary: #1e3a5f;       /* Deep navy blue */
    --blue-dark: #0f2038;          /* Darker navy */
    --blue-medium: #2d5a87;        /* Medium blue */
    --blue-light: #4a7fb5;         /* Light blue accent */
    --blue-pale: #e8f1f8;          /* Very light blue */

    /* Silver/Gray Palette */
    --silver-primary: #c0c5ce;     /* Classic silver */
    --silver-light: #e8eaed;       /* Light silver */
    --silver-dark: #8a919a;        /* Dark silver */
    --silver-metallic: linear-gradient(135deg, #c0c5ce 0%, #e8eaed 50%, #c0c5ce 100%);

    /* Accent Colors */
    --white: #ffffff;
    --cream: #f8f9fa;
    --black-primary: #1a1a2e;
    --black-soft: #2d2d44;
    --black-secondary: #4a4a5a;

    /* Shadows */
    --shadow-blue: rgba(30, 58, 95, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--black-primary);
    background: var(--white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

/* ═══════════════════════════════════════════════════
   HERO SECTION - Classic Blue Design
   ═══════════════════════════════════════════════════ */

.hero {
    background: linear-gradient(135deg, rgba(15, 32, 56, 0.92) 0%, rgba(30, 58, 95, 0.88) 50%, rgba(45, 90, 135, 0.92) 100%),
                url('images/background/Junk-Removal-in-Brooklyn-2025-1024x559.webp') center/cover no-repeat;
    color: var(--white);
    padding: 20px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 32, 56, 0.2);
    pointer-events: none;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

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

.logo-img {
    height: 80px;
    width: 80px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 50%;
    border: 3px solid var(--silver-primary);
    box-shadow: 0 4px 20px var(--shadow-dark);
    background: var(--white);
    padding: 0;
}

.logo-text h1 {
    font-size: 2.2em;
    margin-bottom: 0;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.logo-text .tagline {
    display: block;
    font-size: 1.1em;
    color: var(--silver-light);
    letter-spacing: 3px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: right;
}

.phone {
    color: var(--silver-light);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.phone:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.btn-primary {
    background: var(--silver-metallic);
    color: var(--blue-dark);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-dark);
    border: 2px solid var(--silver-primary);
    font-size: 1em;
    text-transform: uppercase;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-dark);
    background: var(--white);
    color: var(--blue-primary);
}

/* Hero Content */
.hero-content {
    text-align: center;
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.hero-content h2 {
    font-size: 3.5em;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h3 {
    font-size: 1.8em;
    font-weight: 300;
    margin-bottom: 25px;
    color: var(--silver-light);
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.hero-text {
    font-size: 1.15em;
    margin-bottom: 50px;
    color: var(--silver-primary);
    font-weight: 400;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    background: var(--silver-metallic);
    color: var(--blue-dark);
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 20px var(--shadow-dark);
    border: 2px solid var(--silver-primary);
    text-transform: uppercase;
}

.btn-large:hover {
    background: var(--white);
    color: var(--blue-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--shadow-dark);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--silver-primary);
    color: var(--silver-light);
    padding: 16px 45px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--silver-primary);
    color: var(--blue-dark);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

/* ═══════════════════════════════════════════════════
   SECTIONS - General Styles
   ═══════════════════════════════════════════════════ */

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--blue-primary);
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
    font-weight: 500;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-light), var(--blue-primary), var(--blue-light));
}

.section-subtitle {
    text-align: center;
    font-size: 1.15em;
    color: var(--black-secondary);
    margin-bottom: 60px;
    font-weight: 400;
}

/* ═══════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════ */

.services {
    background: var(--blue-pale);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary), var(--blue-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-light);
    box-shadow: 0 15px 40px var(--shadow-blue);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    color: var(--blue-primary);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--blue-primary);
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.service-card p {
    color: var(--black-secondary);
    line-height: 1.7;
    font-weight: 400;
    font-size: 0.95em;
}

/* ═══════════════════════════════════════════════════
   WHY CHOOSE US
   ═══════════════════════════════════════════════════ */

.why-us {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.benefit {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--cream);
    border-left: 4px solid var(--blue-primary);
}

.benefit:hover {
    background: var(--blue-pale);
    transform: translateX(5px);
}

.check {
    background: var(--blue-primary);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    flex-shrink: 0;
    box-shadow: 0 4px 15px var(--shadow-blue);
    font-weight: bold;
}

.benefit h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    color: var(--blue-primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.benefit p {
    color: var(--black-secondary);
    font-weight: 400;
    line-height: 1.6;
    font-size: 0.95em;
}

/* ═══════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════ */

.gallery {
    background: var(--blue-pale);
    padding: 100px 0;
}

.gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    min-height: 500px;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 600px;
}

.gallery-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--blue-primary);
    overflow: hidden;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

.placeholder-image {
    width: 100%;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-pale), var(--silver-light));
    color: var(--blue-medium);
}

.placeholder-image svg {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.placeholder-image p {
    font-size: 1.1em;
    opacity: 0.7;
}

.slide-info {
    display: none;
}

.slide-info h3 {
    font-size: 1.5em;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.slide-info p {
    font-size: 1em;
    color: var(--silver-light);
    margin: 0;
}

/* Gallery Navigation */
.gallery-nav {
    background: var(--blue-primary);
    border: 3px solid var(--silver-primary);
    color: var(--white);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 2em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow-blue);
    flex-shrink: 0;
}

.gallery-nav:hover {
    transform: scale(1.1);
    background: var(--blue-light);
    box-shadow: 0 6px 25px var(--shadow-blue);
}

.gallery-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.gallery-nav span {
    display: block;
    line-height: 1;
}

/* Slide Counter */
.slide-counter {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2em;
    color: var(--blue-primary);
    font-weight: 600;
    letter-spacing: 2px;
}

.slide-counter span {
    color: var(--blue-light);
    font-size: 1.3em;
}

/* ═══════════════════════════════════════════════════
   SOCIAL MEDIA SECTION
   ═══════════════════════════════════════════════════ */

.social-section {
    background: var(--blue-dark);
    color: var(--white);
    padding: 80px 0;
}

.social-section .section-title {
    color: var(--white);
}

.social-section .section-title::after {
    background: var(--silver-primary);
}

.social-section .section-subtitle {
    color: var(--silver-light);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-dark);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
}

.social-btn.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 39, 67, 0.4);
}

.social-btn.facebook {
    background: #1877f2;
    color: var(--white);
}

.social-btn.facebook:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */

.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial {
    background: var(--cream);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid var(--blue-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-blue);
}

.stars {
    color: #ffc107;
    font-size: 1.4em;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.testimonial p {
    color: var(--black-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 1em;
}

.author {
    color: var(--blue-primary) !important;
    font-style: italic;
    font-size: 0.95em;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════ */

.faq {
    padding: 100px 0;
    background: var(--blue-pale);
}

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

.faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--silver-light);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--blue-light);
    box-shadow: 0 5px 20px rgba(30, 58, 95, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05em;
    font-weight: 600;
    color: var(--blue-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

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

.faq-icon {
    font-size: 1.5em;
    color: var(--blue-primary);
    transition: transform 0.3s ease;
    font-weight: 300;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 22px;
}

.faq-answer p {
    color: var(--black-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ═══════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════ */

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

.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-form {
    background: var(--cream);
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--silver-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--blue-primary);
    letter-spacing: 0.5px;
    font-size: 0.95em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--silver-light);
    border-radius: 6px;
    font-size: 1em;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 10px var(--shadow-blue);
}

.btn-submit {
    width: 100%;
    background: var(--blue-primary);
    color: var(--white);
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px var(--shadow-blue);
}

.btn-submit:hover {
    background: var(--blue-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-blue);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
    display: block;
}

/* Contact Info Box */
.contact-info-box {
    background: var(--blue-primary);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px var(--shadow-blue);
    height: fit-content;
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 1.6em;
    margin-bottom: 30px;
    color: var(--white);
    letter-spacing: 1px;
    border-bottom: 2px solid var(--silver-primary);
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.info-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--silver-light);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--silver-primary);
}

.info-item p {
    color: var(--silver-light);
    margin: 0;
    line-height: 1.6;
}

.contact-social {
    display: flex;
    gap: 15px;
}

.contact-social a {
    font-size: 1em;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */

.footer {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--black-primary) 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid var(--blue-medium);
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-section p {
    margin: 8px 0;
    color: var(--silver-light);
    font-weight: 400;
}

.footer-section a {
    color: var(--silver-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-brand p {
    line-height: 1.6;
    font-size: 0.95em;
}

.footer-brand .established {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.8;
    font-size: 0.9em;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 8px 0;
    opacity: 0.9;
    font-weight: 400;
    color: var(--silver-light);
    font-size: 0.95em;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════ */

@media (max-width: 968px) {
    .hero-content h2 {
        font-size: 2.5em;
    }

    .hero-content h3 {
        font-size: 1.4em;
    }

    .section-title {
        font-size: 2.2em;
    }

    .gallery-container {
        gap: 20px;
    }

    .gallery-slider {
        height: 450px;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2em;
    }

    .hero-content h3 {
        font-size: 1.2em;
    }

    nav {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .logo {
        flex-direction: column;
        text-align: center;
    }

    .logo-img {
        height: 60px;
        width: 60px;
    }

    .logo-text h1 {
        font-size: 1.6em;
    }

    .contact-info {
        flex-direction: column;
        width: 100%;
    }

    .phone-numbers {
        text-align: center;
    }

    .phone {
        font-size: 1em;
    }

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

    .btn-large,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .gallery-container {
        flex-direction: column;
        gap: 25px;
    }

    .gallery-slider {
        height: 380px;
    }

    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .section-title {
        font-size: 1.8em;
    }

    .contact-form,
    .contact-info-box {
        padding: 30px;
    }

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

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════ */

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

.hero-content,
.service-card,
.benefit,
.testimonial {
    animation: fadeIn 0.6s ease-out;
}

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