:root {
    --color-primary: #f97316;
    /* Orange 500 */
    --color-primary-dark: #ea580c;
    /* Orange 600 */
    --color-secondary: #1e3a8a;
    /* Blue 900 */
    --color-text-main: #374151;
    /* Gray 700 */
    --color-text-light: #f8fafc;
    --color-bg-light: #f8fafc;
    --color-white: #ffffff;
    --font-main: 'Inter', Tahoma, Arial, Helvetica, Roboto, system-ui, -apple-system, sans-serif;
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
}

.text-light {
    color: var(--color-text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary-dark);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary);
}

.btn-primary-gradient {
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    color: white;
}

.btn-primary-gradient:hover {
    opacity: 0.9;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.text-light.section-title {
    color: white;
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
}

.text-light.section-subtitle {
    color: #cbd5e1;
}

.highlight {
    color: var(--color-primary);
}

.icon {
    width: 20px;
    height: 20px;
}

.icon-small {
    width: 16px;
    height: 16px;
}

/* Header */
.site-header {
    background-image: url('assets/banner-top.jpg');
    background-size: cover;
    background-position: center bottom;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 0;
    height: auto;
    max-height: 120px;
    /* Adjust based on image aspect ratio */
    display: flex;
    align-items: center;
}

/* .top-banner removed */

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s;
}

.nav-link.text-white {
    color: white;
}

.nav-link:hover {
    opacity: 0.9;
}

/* Custom Buttons */
.btn-navy {
    background-color: #1e3a8a;
    /* Dark blue match */
    color: white;
    padding: 0.4rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-navy:hover {
    background-color: #172554;
}

.contact-info {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 1rem;
}

.phone-link.text-white {
    color: white;
}

/* Override .btn-primary for header usage if needed specifically */
.header-actions .btn-primary {
    background: linear-gradient(to bottom, #f97316, #ea580c);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.nav-toggle-label span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 1050px) {
    .site-header {
        padding: 0.5rem 0;
        height: auto;
    }

    .nav-toggle-label {
        display: flex;
    }

    .header-container {
        flex-wrap: wrap;
    }

    /* Hide header-right by default on mobile */
    .header-right {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
    }

    /* Show when checked */
    .nav-toggle:checked~.header-right {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    .main-nav {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        text-align: center;
    }

    .contact-info {
        margin-bottom: 0.5rem;
    }

    /* Animate hamburger to X */
    .nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    background: #000 url('images/hero_bg.png') no-repeat center center;
    background-size: cover;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-top-line {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content h1 .highlight {
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #e2e8f0;
    max-width: 600px;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }
}

/* Gallery */
.gallery-section {
    padding: 5rem 0;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    background: #f1f5f9;
    border: none;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover,
.tab.active {
    background: var(--color-primary-dark);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

/* Services */
.services-section {
    padding: 5rem 0;
    background: var(--color-bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background: #fff7ed;
    color: var(--color-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Why Us */
.why-us-section {
    padding: 5rem 0;
    background: var(--color-secondary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: white;
}

.stat-title-line {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-mid-line {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.125rem;
}

.stat-sub-line {
    font-size: 0.95rem;
    font-weight: 400;
    color: #dddddd;
}

.why-cta {
    text-align: center;
    background: linear-gradient(to right, #ea580c, #f97316);
    border: none;
    padding: 4rem;
    border-radius: var(--radius);
    color: white;
}

.why-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.why-cta p {
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

/* Testimonials */
.testimonials-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-secondary), #1e293b);
    color: white;
    text-align: center;
}

.testimonials-section .section-title {
    color: white;
}

.quote-icon-top {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.quote-icon-top svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.star-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #f1f5f9;
    line-height: 1.7;
    flex-grow: 1;
}

.testimonial-author strong {
    display: block;
    color: white;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Get In Touch Section */
.get-in-touch-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: white;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    display: block;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon.orange {
    background: var(--color-primary);
}

.contact-icon.blue {
    background: #2563eb;
}

.contact-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: white;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: #cbd5e1;
}

.regions-header {
    margin-top: 4rem;
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.region-tags {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.region-tag {
    padding: 0.4rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #e2e8f0;
}


/* Contact */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .contact-form {
        grid-template-columns: 1fr 1fr;
    }

    .full-width {
        grid-column: span 2;
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #475569;
    font-size: 0.9rem;
}

/* Global Form Control with Support for Icons */
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: #1f2937;
    background-color: white;
    transition: all 0.2s;
    appearance: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Input Wrapper for Icons */
.input-wrapper {
    position: relative;
}

.input-wrapper .form-control {
    padding-left: 2.8rem;
    /* Space for icon */
}

/* Override for simple inputs in .form-group that don't have wrappers */
.form-group>input:not(.form-control),
.form-group>select:not(.form-control),
.form-group>textarea:not(.form-control) {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius);
    outline: none;
}

.input-wrapper svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #94a3b8;
    pointer-events: none;
}

.textarea-icon {
    top: 1.2rem !important;
    transform: none !important;
}

.form-note {
    grid-column: span 2;
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 1rem;
}

/* Footer Refinement */
.site-footer {
    background-image: url('assets/banner-top.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 2rem 0 0;
    font-size: 0.9rem;
    border-top: none;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-center-col {
    text-align: center;
}

.footer-center-col h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-center-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    min-width: 320px;
}

.footer-social-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Vertical alignment */
    gap: 2rem;
    width: 100%;
}

.facebook-icon {
    width: 32px;
    height: 32px;
    background-color: #1e3a8a;
    /* Navy background circle */
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.facebook-icon:hover {
    transform: scale(1.1);
    background-color: var(--color-primary);
}

.facebook-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0;
    text-align: left;
    align-items: flex-start;
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    font-size: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: underline;
}

.footer-links a:hover {
    text-decoration: none;
}

.footer-bottom-bar {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo-col,
    .footer-right-col {
        align-items: center;
        text-align: center;
    }
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.visible {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-caption {
    margin-top: 10px;
    color: #ccc;
    font-size: 1.1rem;
    text-align: center;
}

/* Ensure gallery items have pointer cursor */
.gallery-item {
    cursor: pointer;
}

/* Animation */
@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox.visible .lightbox-content {
    animation: zoomIn 0.3s;
}