/* ===================================
   EA Pro Contractors - Main Stylesheet
   =================================== */

/* ===================================
   CSS Variables & Root Styles
   =================================== */
:root {
    /* Colors */
    --primary-color: #FF6B35;
    --primary-dark: #E85A2B;
    --primary-light: #FF8A5C;
    --secondary-color: #1A2238;
    --secondary-dark: #0D1120;
    --accent-color: #FFD23F;
    --text-dark: #1A2238;
    --text-light: #F4F4F9;
    --text-gray: #6B7280;
    --bg-light: #FFFFFF;
    --bg-dark: #1A2238;
    --bg-gray: #F9FAFB;
    --border-color: #E5E7EB;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFD23F 100%);
    --gradient-dark: linear-gradient(135deg, #1A2238 0%, #2D3E5F 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 34, 56, 0.9) 0%, rgba(255, 107, 53, 0.8) 100%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

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

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

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--text-light);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
    color: var(--text-light);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    white-space: nowrap;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

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

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Header & Navigation
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    font-family: var(--font-heading);
    flex-shrink: 0;
}

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

.logo i {
    color: var(--primary-color);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
    transition: var(--transition-base);
}

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

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

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

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

.btn-call {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition-base);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-call span {
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--primary-color);
    color: var(--bg-light);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 34, 56, 0.7);
}

.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
}

.hero-title {
    color: var(--text-light);
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    color: var(--text-light);
    opacity: 0.95;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-light);
    font-size: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.section-title {
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.section-dark .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* ===================================
   About Section
   =================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

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

.about-features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--bg-light);
    padding: 24px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.image-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.image-badge strong {
    display: block;
    font-size: 1.8rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.image-badge span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===================================
   Services Section
   =================================== */
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.tab-button i {
    font-size: 1.5rem;
}

.tab-button:hover,
.tab-button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--bg-light);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.service-list i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   Portfolio Section
   =================================== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-gray);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-light);
}

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

.portfolio-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.portfolio-cta {
    text-align: center;
}

/* ===================================
   Process Section
   =================================== */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-light);
    box-shadow: var(--shadow-lg);
    font-family: var(--font-heading);
}

.step-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--bg-light);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.stars i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--bg-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--bg-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--bg-light);
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--bg-light);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-color);
    color: var(--bg-light);
}

.cta-section .btn-outline {
    border-color: var(--bg-light);
}

/* ===================================
   Contact Section
   =================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--bg-light);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--text-gray);
    transition: var(--transition-base);
}

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

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--bg-light);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-gray);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-base);
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-gray);
}

/* Map */
.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--gradient-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo a {
    display: block;
}

.footer-logo .logo-img {
    height: 50px;
    width: auto;
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    color: var(--text-light);
    font-family: var(--font-primary);
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
    display: inline-block;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
}

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

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--bg-light);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ===================================
   Responsive Design
   =================================== */

/* Large Desktop - 1200px+ */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 25px;
    }

    .nav-actions {
        gap: 15px;
    }

    .btn-call span {
        display: inline;
    }
}

/* Desktop to Tablet transition - 1024px */
@media (max-width: 1024px) {
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 30px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Start hiding desktop nav elements */
    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

/* Tablet - 992px */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 0;
    }

    .nav-wrapper {
        gap: 20px;
    }

    /* Hide desktop navigation, show hamburger */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-light);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
        z-index: 999;
        gap: 10px;
        overflow-y: auto;
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }

    /* Show hamburger button */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Hide btn-call text, keep icon on tablet */
    .btn-call span {
        display: none;
    }

    .btn-call {
        padding: 12px;
        min-width: 48px;
        justify-content: center;
    }

    /* Nav actions layout */
    .nav-actions {
        gap: 10px;
    }

    .nav-actions .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Small Tablet / Large Mobile - 834px */
@media (max-width: 834px) {
    .navbar {
        padding: 12px 0;
    }

    .logo-img {
        height: 40px;
    }

    /* Show Get Quote button in this range */
    .nav-actions .btn.btn-primary {
        display: inline-flex;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    /* Adjust hero for this range */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 0 20px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        gap: 15px;
    }

    .hero-stats {
        gap: 20px;
    }

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

/* Tablet Portrait / Mobile - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Navigation adjustments */
    .navbar {
        padding: 10px 0;
    }

    .nav-wrapper {
        gap: 15px;
    }

    .nav-menu {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .hamburger {
        display: flex;
    }

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

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

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

    /* Hero section */
    .hero {
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 0 10px;
    }

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

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

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

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

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

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

    /* Services tabs */
    .services-tabs {
        flex-direction: column;
        gap: 10px;
    }

    .tab-button {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile - 576px */
@media (max-width: 576px) {
    .navbar {
        padding: 8px 0;
    }

    .nav-wrapper {
        gap: 10px;
    }

    .logo-img {
        height: 35px;
        max-width: 140px;
    }

    /* Hide Get Quote button on mobile, only show call + hamburger */
    .nav-actions .btn.btn-primary {
        display: none;
    }

    .btn-call {
        padding: 10px 15px;
    }

    .btn-call i {
        font-size: 1rem;
    }

    /* Hero adjustments - ensure all content is visible */
    .hero {
        padding-top: 60px;
        padding-bottom: 30px;
        min-height: auto;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 30px 15px 20px;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        margin-bottom: 30px;
        gap: 10px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
        max-width: 100%;
        width: 100%;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 100%;
        padding: 0;
    }

    .stat-item {
        padding: 8px 4px;
    }

    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .scroll-indicator {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

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

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

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-img {
        height: 32px;
        max-width: 120px;
    }

    /* Hero extreme small */
    .hero {
        padding-top: 55px;
    }

    .hero-content {
        padding: 25px 12px 15px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.15;
    }

    .gradient-text {
        font-size: inherit;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .hero-buttons {
        margin-bottom: 25px;
    }

    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 6px;
    }

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

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

    /* CTA section */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .testimonials-slider {
        grid-template-columns: 1fr;
    }

    /* Portfolio */
    .portfolio-filters {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .logo-img {
        height: 28px;
        max-width: 100px;
    }

    .btn-call {
        padding: 8px 10px;
    }

    .hamburger {
        padding: 6px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    /* Hero for very small screens */
    .hero {
        padding-top: 50px;
    }

    .hero-content {
        padding: 20px 10px 10px;
    }

    .hero-title {
        font-size: 1.35rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.35;
        margin-bottom: 15px;
    }

    .hero-buttons {
        margin-bottom: 20px;
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 9px 14px;
        font-size: 0.8rem;
    }

    .hero-stats {
        gap: 4px;
    }

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

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

/* Fix for iOS Safari viewport height */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }

    .nav-menu {
        height: calc(100vh - 70px);
        height: calc(100dvh - 70px);
    }
}

/* Ensure hamburger is always visible on mobile/tablet */
@media (max-width: 992px) {
    .hamburger {
        display: flex !important;
        order: 3;
    }

    .nav-actions {
        order: 2;
    }

    .logo {
        order: 1;
    }
}

/* Additional fixes for nav-actions on different sizes */
@media (min-width: 769px) and (max-width: 992px) {
    .nav-actions .btn.btn-primary {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .btn-call {
        padding: 10px;
    }
}

/* Landscape mobile fix */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-stats {
        margin-top: 20px;
    }

    .nav-menu {
        overflow-y: auto;
        padding: 20px;
    }

    .nav-link {
        padding: 10px;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Old responsive section continues with form-row */
/* These rules are already covered above */

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

/* ===================================
   Page Hero (For Interior Pages)
   =================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    background: var(--gradient-dark);
}

.page-hero .hero-background {
    opacity: 0.3;
}

.page-hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.page-hero-content h1 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--text-light);
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

/* ===================================
   Service Detail Sections
   =================================== */
.service-detail {
    margin-bottom: 80px;
}

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

.service-detail.reverse .service-detail-content {
    direction: rtl;
}

.service-detail.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-detail-icon i {
    font-size: 2.5rem;
    color: var(--bg-light);
}

.service-detail-text h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-detail-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.section-dark .service-detail-text p {
    color: rgba(255, 255, 255, 0.8);
}

.service-detail-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-box i {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 4px;
}

.section-dark .feature-box i {
    color: var(--accent-color);
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.section-dark .feature-box p {
    color: rgba(255, 255, 255, 0.7);
}

/* Service List Detailed */
.service-list-detailed {
    list-style: none;
    margin-bottom: 30px;
}

.service-list-detailed li {
    padding: 12px 0 12px 36px;
    position: relative;
    line-height: 1.7;
    color: var(--text-gray);
}

.section-dark .service-list-detailed li {
    color: rgba(255, 255, 255, 0.8);
}

.service-list-detailed li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.section-dark .service-list-detailed li::before {
    color: var(--accent-color);
}

.service-list-detailed strong {
    color: var(--text-dark);
    font-weight: 600;
}

.section-dark .service-list-detailed strong {
    color: var(--text-light);
}

/* Service Highlights */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-base);
}

.section-dark .highlight-item {
    background: rgba(255, 255, 255, 0.05);
}

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

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.section-dark .highlight-item i {
    color: var(--accent-color);
}

.highlight-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.section-dark .highlight-item span {
    color: var(--text-light);
}

/* Small Service Cards Grid */
.services-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-small-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.section-dark .service-small-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-small-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-small-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-small-icon i {
    font-size: 1.8rem;
    color: var(--bg-light);
}

.service-small-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.section-dark .service-small-card h4 {
    color: var(--text-light);
}

.service-small-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.section-dark .service-small-card p {
    color: rgba(255, 255, 255, 0.8);
}

.service-small-card ul {
    list-style: none;
}

.service-small-card li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-gray);
    line-height: 1.6;
}

.section-dark .service-small-card li {
    color: rgba(255, 255, 255, 0.7);
}

.service-small-card li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.section-dark .service-small-card li::before {
    color: var(--accent-color);
}

/* ===================================
   Portfolio Page Styles
   =================================== */
.portfolio-detail {
    margin-bottom: 80px;
}

.portfolio-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-detail-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.portfolio-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
}

.meta-item i {
    color: var(--primary-color);
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-description {
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-description h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.portfolio-description p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.project-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.detail-box {
    padding: 30px;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    text-align: center;
}

.detail-box i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.detail-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.detail-box p {
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   Legal Pages Styles
   =================================== */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-updated {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 40px;
    padding: 16px 24px;
    background: var(--bg-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 40px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
    list-style: disc;
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-box {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
}

.contact-box p {
    margin-bottom: 8px;
}

.contact-box strong {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.contact-box a {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

/* ===================================
   Responsive Adjustments for New Pages
   =================================== */
@media (max-width: 1024px) {
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .service-detail.reverse .service-detail-content {
        direction: ltr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

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

    .page-hero {
        padding-top: 80px;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding-top: 75px;
        min-height: 35vh;
    }

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

@media (max-width: 768px) {
    .page-hero {
        min-height: 30vh;
        padding-top: 70px;
    }

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

    .page-hero-content p {
        font-size: 1rem;
    }

    .service-detail-text h3 {
        font-size: 1.8rem;
    }

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

    .service-highlights {
        grid-template-columns: 1fr;
    }

    .portfolio-detail-meta {
        flex-direction: column;
        gap: 15px;
    }

    .project-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 25vh;
        padding-top: 65px;
    }

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

    .page-hero-content p {
        font-size: 0.9rem;
    }

    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .header,
    .back-to-top,
    .hamburger {
        display: none;
    }
}

