/* ============================================
   Total Recycling Scotland - Stylesheet
   Clean, professional design inspired by NWH Group
   ============================================ */

/* ========== SELF-HOSTED INTER FONT ========== */
@font-face {
    font-family: 'Inter';
    src: url('Font-Inter/webfonts/inter-latin-400-normal.woff2') format('woff2'),
         url('Font-Inter/webfonts/inter-latin-400-normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('Font-Inter/webfonts/inter-latin-500-normal.woff2') format('woff2'),
         url('Font-Inter/webfonts/inter-latin-500-normal.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('Font-Inter/webfonts/inter-latin-600-normal.woff2') format('woff2'),
         url('Font-Inter/webfonts/inter-latin-600-normal.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('Font-Inter/webfonts/inter-latin-700-normal.woff2') format('woff2'),
         url('Font-Inter/webfonts/inter-latin-700-normal.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('Font-Inter/webfonts/inter-latin-800-normal.woff2') format('woff2'),
         url('Font-Inter/webfonts/inter-latin-800-normal.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('Font-Inter/webfonts/inter-latin-900-normal.woff2') format('woff2'),
         url('Font-Inter/webfonts/inter-latin-900-normal.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --dark: #1a1a1a;
    --dark-bg: #212121;
    --gray-900: #2d2d2d;
    --gray-700: #555;
    --gray-500: #888;
    --gray-300: #ccc;
    --gray-100: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    color: var(--red-dark);
}

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

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

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

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg {
    flex-shrink: 0;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

.nav-link {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--red);
    background: rgba(211, 47, 47, 0.06);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    font-family: inherit;
    line-height: 1.4;
}

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

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-white:hover {
    background: var(--gray-100);
    color: var(--red-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

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

/* Hero */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 100px 20px 80px;
    color: var(--white);
    max-width: 800px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.trust-item strong {
    font-size: 1.5rem;
    font-weight: 800;
}

.trust-item span {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Quote Section */
.quote-section {
    background: var(--red);
    padding: 0;
    position: relative;
    margin-top: -40px;
    z-index: 2;
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.quote-header {
    padding: 32px 40px 0;
}

.quote-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.quote-header p {
    color: var(--gray-700);
}

.quote-form {
    padding: 24px 40px 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 16px;
    align-items: end;
}

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

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group-btn {
    justify-content: flex-end;
}

.quote-result {
    background: var(--gray-100);
    padding: 32px 40px;
    border-top: 2px solid #eee;
}

.quote-result-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.quote-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--red);
}

.price-note {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.quote-details p {
    margin-bottom: 12px;
    color: var(--gray-700);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-light {
    background: var(--white);
}

.section-dark {
    background: var(--gray-100);
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header h2,
.section-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

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

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

.section-text p {
    color: var(--gray-700);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.section-text h3 {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.section-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Carousel */
.carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #000;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    line-height: 0;
}

.carousel-slide img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.72);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 2px solid var(--gray-100);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(211, 47, 47, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--red);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Skip Cards */
.skips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.skip-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.skip-card.featured {
    border: 2px solid var(--red);
    position: relative;
}

.skip-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 var(--radius) var(--radius);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skip-visual {
    background: linear-gradient(135deg, var(--gray-100) 0%, #e8e8e8 100%);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    margin-bottom: 20px;
}

.skip-size-badge {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
}

.skip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.skip-desc {
    color: var(--gray-700);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.skip-details {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.skip-details li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
}

.skip-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.skip-note {
    text-align: center;
    margin-top: 32px;
    padding: 20px;
    background: rgba(211, 47, 47, 0.06);
    border-radius: var(--radius);
}

.skip-note p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Materials Grid */
.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}

.material-item {
    background: rgba(211, 47, 47, 0.06);
    padding: 10px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

/* Services List */
.services-list {
    list-style: none;
}

.services-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 1rem;
    padding-left: 28px;
    position: relative;
}

.services-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

/* Environment Grid */
.env-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.env-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--red);
}

.env-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.env-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

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

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--red);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Testimonial Banner */
.testimonial-banner {
    background: var(--red);
    color: var(--white);
    padding: 72px 20px;
}

.testimonial-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: center;
}

.testimonial-left h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.15;
}

.testimonial-left p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.testimonial-right {
    position: relative;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 36px 40px;
    position: relative;
}

.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.95;
}

.testimonial-quote footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author {
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 24px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.contact-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--red);
}

.contact-card address {
    font-style: normal;
    color: var(--gray-700);
}

.contact-card a {
    color: var(--dark);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--red);
}

.contact-form-wrap {
    background: var(--gray-100);
    padding: 36px;
    border-radius: var(--radius-lg);
}

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

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form textarea {
    resize: vertical;
}

/* Validation error states */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--red);
    background: #fff5f5;
}

.field-error {
    font-size: 0.8rem;
    color: var(--red);
    min-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.2s ease;
    opacity: 0;
    max-height: 0;
    display: block;
}

.field-error.visible {
    opacity: 1;
    max-height: 40px;
    margin-top: 4px;
}

/* Contact success panel */
.contact-success {
    text-align: center;
    padding: 48px 24px;
    animation: fadeInUp 0.4s ease;
}

.contact-success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #2e7d32;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact-success p {
    color: var(--gray-700);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Page Hero (subpages) */
.page-hero {
    background: var(--dark);
    color: var(--white);
    padding: 64px 20px 56px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 520px;
    margin: 0 auto;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.review-stars {
    color: #f59e0b;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card blockquote p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.review-author strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* Review Form */
.review-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
}

.review-form .form-group {
    margin-bottom: 16px;
}

.star-rating {
    display: flex;
    gap: 4px;
}

.star-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--gray-300);
    cursor: pointer;
    padding: 0 2px;
    transition: color 0.15s ease, transform 0.15s ease;
    line-height: 1;
}

.star-btn:hover,
.star-btn.active {
    color: #f59e0b;
    transform: scale(1.15);
}

/* Testimonial banner button group */
.testimonial-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Map */
.map-section {
    line-height: 0;
}

.map-section iframe {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

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

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
}

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

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

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

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-staff-link {
    display: block;
    margin-top: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.18);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-staff-link:hover {
    color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
    border-top: 0.5px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.footer-tagline-text {
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(200, 200, 200, 0.45);
}

.footer-tagline-credit {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(200, 200, 200, 0.25);
}

.footer-tagline-dot {
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(200, 200, 200, 0.25);
    display: inline-block;
}

.footer-tagline-credit a {
    color: rgba(220, 220, 220, 0.5);
    text-decoration: none;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 1px;
    transition: color var(--transition);
}

.footer-tagline-credit a:hover {
    color: rgba(220, 220, 220, 0.75);
}

/* ============================================
   Responsive — Breakpoint System
   ─────────────────────────────────────────────
   2xl  ≥ 1440px   wide / large desktop
   xl   ≥ 1280px   desktop
   lg   ≤ 1024px   landscape tablet / small laptop
   md   ≤  900px   portrait tablet / large phone landscape
   sm   ≤  768px   phone / portrait tablet
   xs   ≤  480px   small phone
   xxs  ≤  360px   very small phone (Galaxy S etc.)
   ─────────────────────────────────────────────
   Strategy: desktop-first (max-width) for lg and below;
   min-width for xl/2xl enhancements.
   ============================================ */

/* ---- Large Desktop (≥ 1280px) ---- */
@media (min-width: 1280px) {

    .hero {
        min-height: 680px;
    }

    .hero h1 {
        font-size: 3.6rem;
    }

    .hero-sub {
        font-size: 1.35rem;
    }

    .section {
        padding: 96px 0;
    }

    .section-header h2,
    .section-text h2 {
        font-size: 2.5rem;
    }
}

/* ---- Wide Desktop (≥ 1440px) ---- */
@media (min-width: 1440px) {

    .container {
        max-width: 1360px;
    }
}

/* ---- Tablet (up to 1024px) ---- */
@media (max-width: 1024px) {

    /* Navigation – slide-down drawer */
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 8px 16px 16px;
        box-shadow: var(--shadow-lg);
        gap: 0;
        z-index: 999;
        border-top: 2px solid var(--gray-100);
    }

    .nav.open {
        display: flex;
    }

    /* Larger tap targets for nav links */
    .nav-link {
        padding: 14px 16px;
        width: 100%;
        font-size: 1rem;
        border-radius: var(--radius);
    }

    .mobile-toggle {
        display: flex;
    }

    /* Animated hamburger → X */
    .mobile-toggle.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 2.4rem;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .skips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Portrait Tablet / Large Phone Landscape (up to 900px) ---- */
@media (max-width: 900px) {

    /* Quote form: collapse to single column earlier */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    /* Services: single column sooner */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Skip grid: keep 2 columns but tighten gap */
    .skips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Footer: 2-column layout */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    /* Section padding slightly reduced */
    .section {
        padding: 64px 0;
    }

    /* Reviews grid: 2 columns on tablet */
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ---- Mobile (up to 768px) ---- */
@media (max-width: 768px) {

    /* Top bar — show only phone number, centred */
    .top-bar-inner {
        justify-content: center;
    }

    .top-bar-right {
        display: none;
    }

    /* Make top-bar items larger/easier to tap */
    .top-bar-item {
        font-size: 0.9rem;
        gap: 8px;
    }

    /* Header */
    .header-inner {
        padding: 8px 16px;
    }


    /* Hero */
    .hero {
        min-height: 520px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .hero-sub {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-content {
        padding: 80px 16px 60px;
    }

    .hero-trust {
        gap: 20px;
    }

    .trust-item strong {
        font-size: 1.3rem;
    }

    /* Quote card */
    .quote-section {
        margin-top: -24px;
    }

    .quote-card {
        border-radius: var(--radius);
    }

    .quote-header {
        padding: 24px 20px 0;
    }

    .quote-header h2 {
        font-size: 1.3rem;
    }

    .quote-form {
        padding: 16px 20px 24px;
    }

    .quote-result {
        padding: 24px 20px;
    }

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

    /* Bigger tap targets on form inputs */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 56px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2,
    .section-text h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 24px;
    }

    /* Skip hire */
    .skips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .skip-card {
        padding: 20px;
    }

    /* Environment */
    .env-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .env-card {
        padding: 24px;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

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

    /* Testimonial banner */
    .testimonial-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .testimonial-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-banner {
        padding: 48px 16px;
    }

    .testimonial-left h2 {
        font-size: 1.75rem;
    }

    .testimonial-left p {
        font-size: 1rem;
    }

    .testimonial-quote {
        padding: 28px 24px;
    }

    .testimonial-quote p {
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* About stats */
    .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    /* Materials */
    .materials-grid {
        grid-template-columns: 1fr;
    }

    /* Quote price */
    .price-value {
        font-size: 2.2rem;
    }

    /* FAQ */
    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 16px;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 24px;
    }

    .review-form-wrap {
        padding: 24px 20px;
    }

    /* Page hero */
    .page-hero {
        padding: 48px 16px 40px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    /* Testimonial actions */
    .testimonial-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
}

/* ---- Small Mobile (up to 480px) ---- */
@media (max-width: 480px) {

    /* Hero */
    .hero {
        min-height: 480px;
    }

    .hero h1 {
        font-size: 1.65rem;
        letter-spacing: -0.3px;
    }

    .hero-sub {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 70px 16px 50px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .hero-trust {
        gap: 16px;
    }

    /* Skips — single column on very small screens */
    .skips-grid {
        grid-template-columns: 1fr;
    }

    /* Section headings */
    .section-header h2,
    .section-text h2 {
        font-size: 1.5rem;
    }

    /* Testimonial banner small screen */
    .testimonial-left .btn {
        width: 100%;
        max-width: 340px;
    }

    /* Ensure buttons are always easy to tap */
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding-top: 40px;
    }

    /* Contact info cards */
    .contact-card {
        padding: 20px 16px;
    }
}

/* ---- Very small (360px and below) ---- */
@media (max-width: 360px) {

    .hero h1 {
        font-size: 1.45rem;
    }

    .section-header h2,
    .section-text h2 {
        font-size: 1.35rem;
    }

    .container {
        padding: 0 12px;
    }
}