/* ==========================================
   SCOTCH SCORE HOLDINGS - CONSTRUCTION WEBSITE
   Industrial, Bold, Professional Design
   ========================================== */

/* CSS Variables */
:root {
    /* Colors - Industrial Palette */
    --primary: #F58220;
    --primary-dark: #D36B0E;
    --secondary: #2C3E50;
    --dark: #1A1A1A;
    --darker: #0D0D0D;
    --light: #F5F5F5;
    --white: #FFFFFF;
    --gray: #6C757D;
    --gray-light: #E0E0E0;
    --success: #28A745;
    --warning: #FFC107;
    
    /* Typography */
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Barlow', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

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; }

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

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

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-secondary:hover {
    background: #34495E;
    transform: translateY(-2px);
}

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

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

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

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary);
}

.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-header h2 {
    color: var(--dark);
    margin-bottom: 15px;
}

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

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 2px solid var(--primary);
}

.navbar.scrolled {
    background: var(--darker);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 99;
}

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

.logo img {
    width: 50px;
    height: 50px;
    transition: var(--transition);
}

.logo span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.logo small {
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
}

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

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

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

/* ==========================================
   DROPDOWN NAVIGATION
   ========================================== */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker);
    min-width: 250px;
    padding: 15px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    border-top: 2px solid var(--primary);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--primary);
    padding-left: 35px;
    color: var(--white);
}

.nav-dropdown .nav-link i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* ==========================================
   MOBILE MENU TOGGLE BUTTON - ENHANCED FOR TOUCH
   ========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    /* Increased padding for bigger touch target */
    padding: 10px;
    z-index: 1002;
    position: relative;
    /* Minimum touch target size (Apple/Google recommendation: 44x44px) */
    min-width: 44px;
    min-height: 44px;
    /* Improve touch behavior */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    /* Center the lines within the larger touch area */
    align-items: center;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    display: block;
    /* Prevent lines from intercepting clicks */
    pointer-events: none;
}

/* Hamburger to X animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

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

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

.mobile-menu-toggle:hover span {
    background: var(--primary);
}

/* Ensure button is above other elements */
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
    display: none;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.1) 0%, rgba(44,62,80,0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease;
}

.hero-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.hero-title {
    margin-bottom: 30px;
}

.title-top {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.title-main {
    display: block;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-bottom {
    display: block;
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.2rem;
}

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

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 1.5rem;
    color: var(--primary);
}

/* ==========================================
   QUICK AREAS & SERVICE AREAS
   ========================================== */
.quick-areas {
    padding: var(--section-padding);
    background: var(--white);
}

.quick-areas h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark);
}

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

.area-card {
    padding: 40px 30px;
    background: var(--light);
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.area-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.area-card h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

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

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-overview {
    padding: var(--section-padding);
    background: var(--light);
}

.services-home {
    padding: var(--section-padding);
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 25px;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

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

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    color: var(--gray);
    position: relative;
    font-size: 0.95rem;
}

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

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose {
    padding: var(--section-padding);
    background: var(--secondary);
    color: var(--white);
    position: relative;
}

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

.why-choose .section-header h2,
.why-choose .section-header p {
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 30px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    transition: var(--transition);
    background: var(--white);
}

.why-section .why-item {
    background: var(--white);
    border-color: var(--gray-light);
}

.why-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.why-section .why-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.why-item h3,
.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.why-section .why-item h4 {
    color: var(--dark);
}

.why-item p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.why-section .why-item p {
    color: var(--gray);
}

/* ==========================================
   PROJECTS GALLERY
   ========================================== */
.projects {
    padding: var(--section-padding);
}

.projects-preview {
    padding: var(--section-padding);
    background: var(--light);
}

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

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

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.95) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

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

.project-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.project-overlay p {
    color: var(--primary);
    font-size: 0.95rem;
}

/* ==========================================
   SERVICE AREAS
   ========================================== */
.service-areas {
    padding: var(--section-padding);
    background: var(--light);
}

.areas-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.areas-column h3 {
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.areas-column i {
    color: var(--primary);
}

.areas-column ul {
    list-style: none;
    columns: 2;
    column-gap: 20px;
}

.areas-column li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: var(--gray);
}

.areas-column li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.areas-cta {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: var(--white);
    border: 2px solid var(--primary);
    border-radius: 4px;
}

.areas-cta h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.areas-cta p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    padding: var(--section-padding);
}

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

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

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.about-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

.about-stats-inline {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-inline {
    font-size: 1rem;
    color: var(--gray);
}

.stat-inline strong {
    display: block;
    font-size: 2rem;
    font-family: var(--font-display);
    color: var(--primary);
    margin-bottom: 5px;
}

.about-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.badge-content {
    text-align: center;
    color: var(--white);
}

.badge-content strong {
    display: block;
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-weight: 900;
}

.badge-content span {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

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

/* ==========================================
   QUOTE SECTION
   ========================================== */
.quote-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.quote-info {
    color: var(--white);
}

.quote-info .section-tag {
    margin-bottom: 20px;
}

.quote-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.quote-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.contact-methods h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-method:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
}

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

.contact-method strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

.contact-method span {
    color: rgba(255,255,255,0.7);
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(245,130,32,0.1);
    border: 1px solid var(--primary);
    border-radius: 4px;
}

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

.trust-badge span {
    color: var(--white);
    font-weight: 600;
}

/* Quote Form */
.quote-form {
    background: var(--white);
    padding: 40px;
    border-radius: 4px;
}

.quote-form h3 {
    color: var(--dark);
    margin-bottom: 30px;
}

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

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

.form-group label {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--gray-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.form-group textarea {
    resize: vertical;
}

.form-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 20px;
}

.form-note i {
    color: var(--success);
}

.form-note a {
    color: var(--primary);
    font-weight: 600;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--darker);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

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

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
}

.footer-logo small {
    font-size: 0.8rem;
    color: var(--primary);
    letter-spacing: 2px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 1.3rem;
    transition: var(--transition);
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

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

.footer-contact strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

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

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-keywords {
    font-size: 0.85rem !important;
    color: rgba(255,255,255,0.4) !important;
    line-height: 1.6;
}

/* ==========================================
   FLOATING ELEMENTS
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Back to Top Button - Using ID selector to match HTML */
#backToTop,
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow-md);
}

#backToTop.show,
#backToTop.visible,
.back-to-top.show,
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

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

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 130, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 130, 32, 0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

    .areas-column ul {
        columns: 1;
    }
}

/* ==========================================
   MOBILE STYLES (768px and below)
   ========================================== */
@media (max-width: 768px) {
    /* Mobile Menu Toggle - Show on mobile */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: var(--darker);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        gap: 0;
        z-index: 999;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-link {
        display: block;
        padding: 15px 10px;
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile Dropdown Behavior */
    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(255,255,255,0.05);
        margin-top: 0;
        margin-left: 0;
        padding: 0;
        box-shadow: none;
        border-top: none;
        border-left: 2px solid var(--primary);
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 30px;
        font-size: 0.95rem;
    }

    .dropdown-menu a:hover {
        padding-left: 40px;
    }

    .nav-dropdown > .nav-link i {
        float: right;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > .nav-link i {
        transform: rotate(180deg);
    }

    /* Mobile CTA Button */
    .nav-cta {
        width: 100%;
        margin-top: 20px;
        border-bottom: none;
    }

    .nav-cta .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* Hero Section Mobile */
    .hero h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .hero-feature {
        font-size: 0.9rem;
    }

    .hero-buttons,
    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-buttons .btn,
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    /* Grids Mobile */
    .services-grid,
    .projects-grid,
    .projects-grid-preview {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .areas-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quote-content {
        grid-template-columns: 1fr;
    }

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

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

    .areas-cta {
        grid-column: 1;
    }

    /* Image Optimization Mobile */
    .hero-background img {
        object-fit: cover;
        object-position: center center;
        width: 100%;
        height: 100%;
    }

    .project-item img,
    .service-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Floating Buttons Mobile */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    #backToTop,
    .back-to-top {
        bottom: 90px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ==========================================
   EXTRA SMALL MOBILE (480px and below)
   ========================================== */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }

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

    .hero h1 {
        font-size: 1.5rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

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

    .about-stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .quote-form {
        padding: 30px 20px;
    }

    .container {
        padding: 0 15px;
    }

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