/* ============================================
   Katy Concrete Co - Modern Professional Stylesheet
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

/* CSS Variables - Modern Professional Palette */
:root {
    /* Primary Colors */
    --primary-color: #1a2332;
    --primary-light: #36445a;
    --primary-dark: #0f1621;
    
    /* Accent Colors */
    --accent-gold: #c9a227;
    --accent-gold-light: #dbb84d;
    --accent-gold-dark: #a68520;
    --accent-teal: #0d9488;
    --accent-teal-light: #14b8a6;
    
    /* Neutral Colors */
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --light-bg: #f7f8fc;
    --lighter-bg: #fafbfd;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 35, 50, 0.08);
    --shadow: 0 4px 15px rgba(26, 35, 50, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 35, 50, 0.12);
    --shadow-lg: 0 20px 50px rgba(26, 35, 50, 0.15);
    --shadow-gold: 0 8px 30px rgba(201, 162, 39, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* Rotating single testimonial layout on homepage */
.testimonials-rotator {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 260px;
}

.testimonials-rotator .testimonial-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.testimonials-rotator .testimonial-card.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--accent-gold);
    background-color: transparent;
    padding: 0;
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}

.testimonial-dot.is-active {
    background-color: var(--accent-gold);
    transform: scale(1.1);
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--accent-gold);
}

ul {
    list-style: none;
}

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

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-family: 'Inter', sans-serif; font-weight: 600; }
h4 { font-size: 1.125rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Header & Navigation
   ============================================ */
header {
    background-color: var(--primary-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition);
}

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

.logo:hover {
    opacity: 0.85;
}

/* Navigation */
nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav > ul > li {
    position: relative;
}

nav a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width var(--transition);
}

nav a:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
}

nav a:hover::before {
    width: 60%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition);
    z-index: 1001;
    flex-direction: column;
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

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

.dropdown-menu li {
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: var(--text-primary);
    padding: 0.875rem 1.25rem;
    border-radius: 0;
    font-size: 0.9rem;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Dropdown Arrow */
.dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    margin-bottom: 2px;
    transition: transform var(--transition);
}

.dropdown:hover > a::after {
    transform: rotate(-135deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6rem 0 7rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: var(--white);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 162, 39, 0.35);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    margin-bottom: 0.75rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--light-bg);
}

/* ============================================
   Services Grid
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.25rem;
}

/* Homepage services overview layout refinements */
.services-overview .services-grid {
    max-width: 1120px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-align: center;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    margin: 1.25rem 1.5rem 0.75rem;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.service-card p {
    color: var(--text-muted);
    margin: 0 1.5rem 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-card .btn {
    margin: 0 1.5rem 1.5rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* ============================================
   Areas Grid
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.area-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.area-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 0;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.area-card:hover::after {
    opacity: 1;
}

.area-card h3,
.area-card a {
    position: relative;
    z-index: 1;
}

.area-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.area-card:hover h3 {
    color: var(--white);
}

.area-card a {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

/* ============================================
   Trust Elements
   ============================================ */
.trust-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-item {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.trust-item h3 {
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

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

.testimonial-card::before {
    content: '"';
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 5rem;
    color: var(--accent-gold);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 25px;
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.testimonial-location {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Star rating visual */
.testimonial-card::after {
    content: '★★★★★';
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    color: var(--accent-gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

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

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-gold);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
    transition: transform var(--transition);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    display: none;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-item.is-open .faq-question::after {
    transform: rotate(45deg);
}

/* ============================================
   Page Header (Inner Pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    color: var(--white);
    padding: 4rem 0 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1.25rem 0;
    background-color: var(--lighter-bg);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb ul {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumb li {
    font-size: 0.9rem;
}

.breadcrumb li::after {
    content: '›';
    margin-left: 0.75rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.breadcrumb li:last-child::after {
    content: '';
}

.breadcrumb li:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* ============================================
   Content Sections
   ============================================ */
.content-section {
    padding: 5rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

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

.content-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

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

.content-image:hover img {
    transform: scale(1.05);
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    line-height: 1.8;
}

.content-text ul {
    margin: 1.5rem 0;
}

.content-text li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
}

.content-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 1.1rem;
}

.content-text li strong {
    color: var(--primary-color);
}

/* ============================================
   Service List
   ============================================ */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.service-list li {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 500;
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.service-list li:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.service-list li a {
    color: var(--primary-color);
    transition: color var(--transition);
}

.service-list li a:hover {
    color: var(--accent-gold);
}

/* ============================================
   Google Map
   ============================================ */
.map-container {
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   Service Area Pages - Enhanced Styling
   ============================================ */

/* Location Badge in Page Header */
.page-header .location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header .location-badge svg {
    width: 18px;
    height: 18px;
}

/* Service Area Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(26, 35, 50, 0.15);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Service Area Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin: 3rem 0;
}

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

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Service Area Quick Links */
.quick-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.quick-service-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: all var(--transition);
}

.quick-service-link:hover {
    border-color: var(--accent-gold);
    background: var(--lighter-bg);
    transform: translateX(5px);
    color: var(--accent-gold);
}

.quick-service-link::before {
    content: '→';
    font-size: 1.25rem;
    color: var(--accent-gold);
    transition: transform var(--transition);
}

.quick-service-link:hover::before {
    transform: translateX(5px);
}

/* Service Area - Services Grid */
.area-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.area-service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--lighter-bg);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--primary-color);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.area-service-item:hover {
    background: var(--white);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.area-service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.area-service-content {
    flex: 1;
}

.area-service-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--primary-color);
    transition: color var(--transition);
}

.area-service-item:hover .area-service-content h4 {
    color: var(--accent-gold);
}

.area-service-content span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.area-service-arrow {
    color: var(--accent-gold);
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition);
}

.area-service-item:hover .area-service-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Why Choose Cards - Clean Icon Style */
.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2.5rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    transform: scaleX(0);
    transition: transform var(--transition);
}

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

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

.why-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: var(--shadow-sm);
}

.why-card-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.why-card-content p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .header-container {
        padding: 0.75rem 16px;
    }

    .logo img {
        height: 160px;
    }

    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -2rem;
    }
    
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    header {
        position: relative;
    }

    .header-container {
        flex-direction: row;
        gap: 0.75rem;
    }

    .logo img {
        height: 120px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    /* Keep dropdown arrows aligned beside text on mobile */
    .dropdown > a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        padding-right: 1.75rem;
    }

    .dropdown > a::after {
        margin-left: 0.25rem;
        margin-bottom: 0;
    }

    section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 4rem 0 4.5rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .content-image img {
        height: 260px;
    }

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

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .feature-cards {
        grid-template-columns: 1fr;
        margin-top: 0;
        padding-top: 2rem;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--accent-gold-dark) 0%, var(--accent-gold) 50%, var(--accent-gold-light) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.cta-section .btn-secondary {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.cta-section .btn-secondary:hover {
    background-color: var(--white);
    color: var(--accent-gold);
}

/* ============================================
   Contact Info
   ============================================ */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-gold);
}

.contact-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-item a {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-gold);
    transition: color var(--transition);
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
}

/* Contact Boxes - Modern Numbered Design */
.contact-hero-section {
    padding: 4rem 0;
}

.contact-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.contact-box {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border-color);
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-lg);
    margin: 0 0.5rem;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
}

.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-gold);
}

.contact-box-inner {
    position: relative;
    z-index: 1;
}

.contact-box h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.contact-box-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: color var(--transition);
}

.contact-box:hover .contact-box-main {
    color: var(--accent-gold);
}

.contact-box-sub {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-boxes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-box {
        margin: 0;
    }
}

/* ============================================
   Forms
   ============================================ */
.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.form-group {
    margin-bottom: 1.75rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition);
    background-color: var(--lighter-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
    background-color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    width: 100%;
    padding: 1.125rem;
    font-size: 1rem;
}

/* Inline Form (for CTA sections) */
.inline-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.inline-form h3 {
    text-align: center;
    margin-bottom: 2rem;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #0a0f16 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section:first-child p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact a {
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--accent-gold-light);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.25rem;
    transition: all var(--transition);
}

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

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

.footer-bottom a {
    color: var(--accent-gold);
}

.footer-bottom a:hover {
    color: var(--accent-gold-light);
}

/* ============================================
   Thank You Page
   ============================================ */
.thank-you-section {
    text-align: center;
    padding: 6rem 0;
}

.thank-you-section h1 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.thank-you-icon {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 120px;
    height: 120px;
    line-height: 120px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-teal) 100%);
    border-radius: 50%;
    box-shadow: var(--shadow-gold);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .content-grid.reverse {
        direction: ltr;
    }
    
    .content-image::before {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero::after {
        height: 80px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-dark);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: var(--shadow-lg);
    }
    
    nav.active {
        max-height: 600px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
    }
    
    nav > ul > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    nav a {
        padding: 1rem 0;
    }
    
    nav a::before {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.2);
        display: none;
        border-radius: var(--radius-sm);
        margin: 0.5rem 0;
        border: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        color: rgba(255, 255, 255, 0.9);
        padding: 0.875rem 1.5rem;
    }
    
    .dropdown > a::after {
        position: absolute;
        right: 0;
    }
    
    /* Hero */
    .hero {
        padding: 4rem 0 5rem;
    }
    
    .hero::after {
        height: 60px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Sections */
    section {
        padding: 3.5rem 0;
    }
    
    .section-title {
        margin-bottom: 3rem;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* CTA */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Page Header */
    .page-header {
        padding: 3rem 0 4rem;
    }
    
    /* Testimonials */
    .testimonial-card::after {
        position: static;
        display: block;
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header-container {
        padding: 1rem 16px;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.py-1 { padding-top: 1rem; padding-bottom: 1rem; }
.py-2 { padding-top: 2rem; padding-bottom: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }

/* Scroll Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Selection Styling */
::selection {
    background-color: var(--accent-gold);
    color: var(--white);
}

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

/* Smooth Scrollbar (WebKit) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
