/* =========================================
   CSS variables / Design System
   ========================================= */
:root {
    /* Colors */
    --primary: #0A192F;
    /* Deep Navy Blue */
    --primary-light: #112240;
    --accent: #FFB000;
    /* Vibrant Amber/Gold */
    --accent-hover: #E59D00;
    --text-dark: #232323;
    --text-light: #666666;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gray: #EAEAEA;
    --border: #E0E0E0;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(10, 25, 47, 0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

    /* Layout */
    --container-width: 1200px;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--primary);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 176, 0, 0.3);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    padding: 16px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 600;
    margin-top: auto;
}

.btn-text i {
    transition: transform 0.3s ease;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 90px;
}

.logo-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--primary);
    position: relative;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--primary);
    /* For a real app, use a high quality background image */
    background-image: linear-gradient(135deg, var(--primary) 0%, #1a365d 100%);
    color: var(--white);
    padding-top: 80px;
    /* space for navbar */
    overflow: hidden;
}

/* Subtle architectural pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image:
        radial-gradient(circle at 100% 50%, transparent 20%, rgba(255, 255, 255, 0.03) 21%, rgba(255, 255, 255, 0.03) 34%, transparent 35%, transparent),
        radial-gradient(circle at 0% 50%, transparent 20%, rgba(255, 255, 255, 0.03) 21%, rgba(255, 255, 255, 0.03) 34%, transparent 35%, transparent);
    background-size: 100px 100px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 25, 47, 0.9) 0%, rgba(10, 25, 47, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    width: 100%;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Action Search Bar (Premium Pill Design) */
.action-search-bar {
    background: var(--white);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    margin-bottom: 50px;
    max-width: 720px;
    width: 100%;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0;
    background: transparent;
    border: none;
}

.search-input-group i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 15px;
}

.service-select {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 0;
    font-size: 1.15rem;
    color: var(--primary);
    font-family: var(--font-body);
    font-weight: 600;
    outline: none;
    cursor: pointer;
    appearance: none;
}

.action-search-bar .btn {
    border-radius: 40px;
    padding: 16px 36px;
    margin: 0;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(255, 176, 0, 0.3);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent);
}

/* =========================================
   Services Grid
   ========================================= */
.services-section {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(10, 25, 47, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--primary);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.focus-card {
    background-color: var(--primary);
    color: var(--white);
}

.focus-card h3 {
    color: var(--white);
}

.focus-card p {
    color: rgba(255, 255, 255, 0.8);
}

.focus-card .service-icon {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

.focus-card:hover .service-icon {
    background-color: var(--accent);
    color: var(--primary);
}

/* =========================================
   About / Why Us Section
   ========================================= */
.dark-section {
    background-color: var(--primary);
    color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.subtitle-gold {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.about-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.glow-icon {
    font-size: 2rem;
    color: var(--accent);
    filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.4));
    margin-top: 4px;
}

.benefits-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.benefits-list span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.about-image-wrapper {
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(45deg, var(--primary-light), #1f3b60);
    border-radius: 20px;
    /* Normally you would have an img here */
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--accent);
    color: var(--primary);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    z-index: 10;
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* =========================================
   Coverage Section
   ========================================= */
.coverage-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.coverage-text>p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.nationwide-alert {
    background-color: rgba(255, 176, 0, 0.1);
    border-left: 4px solid var(--accent);
    padding: 24px;
    border-radius: 0 8px 8px 0;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.nationwide-alert i {
    color: var(--accent);
    font-size: 1.5rem;
}

.nationwide-alert p {
    margin: 0;
    color: var(--primary);
}

.map-visual {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border);
    /* For real implementation, add a greek map svg as background */
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 20px 20px;
}

.pulse-point {
    position: absolute;
    top: 50%;
    left: 40%;
    width: 20px;
    height: 20px;
    background-color: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.pulse-point::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--accent);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.point-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* =========================================
   Portfolio Section
   ========================================= */
.portfolio-info {
    display: none !important;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.pop-in-anim {
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.portfolio-filters {
    background-color: var(--bg-light);
    position: relative;
}

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
    background-color: var(--bg-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: var(--white);
}

.contact-box {
    background-color: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.contact-info {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px;
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.contact-info>p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item .icon-wrap {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.5rem;
}

.contact-item span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.contact-item strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-form {
    padding: 60px;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 176, 0, 0.1);
}

.form-disclaimer {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

/* Privacy & General Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.privacy-label input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-height: 18px !important;
    accent-color: var(--accent);
    cursor: pointer;
    margin: 0 !important;
    padding: 0 !important;
}

.privacy-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-label a:hover {
    color: var(--accent);
}


/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--primary-light);
    color: var(--white);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
    filter: invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 300px;
}

.footer h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.footer-links a,
.footer-services span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: var(--primary);
    padding: 24px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* =========================================
   Media Queries (Responsive)
   ========================================= */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-container,
    .coverage-container,
    .contact-box {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-wrapper {
        order: -1;
    }

    .experience-badge {
        bottom: 20px;
        left: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* In a full app, implement a burger menu */
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .action-search-bar {
        flex-direction: column;
    }

    .search-input-group {
        width: 100%;
    }

    .action-search-bar .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .coverage-map iframe,
    .map-visual {
        height: 250px;
    }

    .section {
        padding: 60px 0;
    }
}


/* =========================================
   UI Enhancements (Lightbox, Menu, Mobile)
   ========================================= */

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(10, 25, 47, 0.95);
    /* Deep dark blue overlay */
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 90vh;
    animation: lightboxZoom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy entry */
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    object-fit: contain;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 45px;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-close:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.photo-card img {
    cursor: zoom-in;
    transition: transform 0.4s ease;
}

.photo-card img:hover {
    transform: scale(1.05);
}

/* Mobile Menu Button Display */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2.2rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1001;
    /* Must be above nav-links */
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s cubic-bezier(0.86, 0, 0.07, 1);
        padding: 0;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a:not(.btn) {
        padding: 18px 20px;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        display: block;
        font-size: 1.1rem;
    }

    .nav-links .btn {
        margin: 20px auto;
        display: block;
        width: 90%;
        text-align: center;
    }
}

/* Hero Search Bar Uniformity Improvements */
@media (max-width: 768px) {
    .action-search-bar {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .search-input-group {
        width: 100%;
        min-height: 56px;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .service-select {
        height: 54px;
        width: 100%;
    }

    .action-search-bar .btn-large {
        width: 100%;
        min-height: 56px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }
}

/* =========================================
   Ultimate Mobile UX Overrides (User Requested)
   ========================================= */
@media (max-width: 768px) {

    /* 1. Spacing */
    .container {
        padding: 0 20px !important;
    }

    /* 2. Typography */
    .hero-title {
        font-size: 2.3rem !important;
        line-height: 1.35 !important;
    }

    h2 {
        font-size: 1.8rem !important;
        line-height: 1.4 !important;
        margin-bottom: 25px !important;
    }

    h3 {
        font-size: 1.35rem !important;
        line-height: 1.4 !important;
    }

    p {
        line-height: 1.65 !important;
    }

    /* 3. Touch UX (Full Width Buttons) */
    .btn {
        width: 100% !important;
        min-height: 54px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 1.1rem !important;
        box-sizing: border-box;
    }

    /* 5. Footer & Map Alignment */
    .footer-container {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 35px !important;
    }

    .footer-brand,
    .footer-links,
    .footer-services {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }

    .coverage-map iframe {
        pointer-events: none !important;
    }
}

/* 4 & 6. Images, Inputs, and Global Touch (Applied everywhere) */
input,
select,
textarea {
    font-size: 16px !important;
    /* Prevent iOS Zoom */
    min-height: 50px !important;
    padding: 12px 15px;
    box-sizing: border-box;
}

.photo-card img {
    height: auto !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
}

.portfolio-img-placeholder span,
.portfolio-item span,
.filter-card span {
    margin-top: 15px !important;
    display: block !important;
}