/* STONICA Granite Countertops - Premium Stylesheet */

:root {
    /* Primary Colors */
    --primary: #2D3748;
    --primary-dark: #1A202C;
    --primary-light: #4A5568;

    /* Accent - Gold/Bronze for luxury feel */
    --accent: #B8860B;
    --accent-light: #DAA520;
    --accent-dark: #8B6914;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F7F5F2;
    --gray-100: #F7FAFC;
    --gray-200: #EDF2F7;
    --gray-300: #E2E8F0;
    --gray-400: #CBD5E0;
    --gray-500: #A0AEC0;
    --gray-600: #718096;
    --gray-700: #4A5568;
    --gray-800: #2D3748;
    --gray-900: #1A202C;

    /* Text */
    --text-dark: #1A202C;
    --text-medium: #4A5568;
    --text-light: #718096;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ============================================= */
/* HEADER */
/* ============================================= */
header {
    background: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

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

/* Navigation */
nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links > li > a {
    color: var(--text-medium);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 6px;
    transition: var(--transition-fast);
    display: block;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--accent);
    background: var(--cream);
}

/* Dropdown */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

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

.nav-links .dropdown-menu li {
    list-style: none;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 10px 14px;
    color: var(--text-medium);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav-links .dropdown-menu a:hover {
    background: var(--cream);
    color: var(--accent);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    font-weight: 600;
    font-size: 0.95rem;
}

.header-phone a {
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone a:hover {
    color: var(--accent);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.mobile-menu-toggle:hover {
    background: var(--gray-100);
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================= */
/* BUTTONS */
/* ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.45);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

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

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--accent);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* ============================================= */
/* HERO SECTION */
/* ============================================= */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

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

.hero-content {
    max-width: 650px;
}

.hero h1 {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Service Page Hero */
.hero-service {
    padding: 80px 0 100px;
}

.hero-service h1 {
    font-size: 2.75rem;
}

/* ============================================= */
/* SECTIONS */
/* ============================================= */
section {
    padding: 100px 0;
}

section.alt-bg {
    background: var(--cream);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.15rem;
    line-height: 1.7;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* ============================================= */
/* SERVICES GRID - Image Cards */
/* ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

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

.service-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

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

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

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    bottom: -30px;
    left: 24px;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.service-card-content {
    padding: 40px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    flex: 1;
    line-height: 1.6;
}

.service-card .learn-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card:hover .learn-more {
    gap: 10px;
}

/* Simple service card (no image) */
.service-card.simple {
    text-align: center;
    padding: 32px 24px;
}

.service-card.simple .service-card-icon {
    position: static;
    margin: 0 auto 20px;
    background: var(--cream);
    color: var(--accent);
    box-shadow: none;
}

/* ============================================= */
/* FEATURES / WHY CHOOSE US */
/* ============================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================= */
/* GALLERY */
/* ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ============================================= */
/* SERVICE AREAS */
/* ============================================= */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
    transition: var(--transition);
}

.area-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ============================================= */
/* FORMS */
/* ============================================= */
.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
}

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

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

/* Checkbox Styling */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--accent);
}

.form-footer {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 20px;
    text-align: center;
}

.form-footer a {
    color: var(--accent);
    font-weight: 500;
}

/* ============================================= */
/* CONTACT SECTION */
/* ============================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info-item:hover {
    box-shadow: var(--shadow);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
}

.contact-info-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-embed {
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    width: 100%;
    height: 280px;
    border: 0;
}

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

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

/* ============================================= */
/* BREADCRUMBS */
/* ============================================= */
.breadcrumbs {
    padding: 16px 0;
    background: var(--gray-100);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumbs a {
    color: var(--text-medium);
}

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

.breadcrumbs span {
    color: var(--gray-400);
    margin: 0 10px;
}

.breadcrumbs .current {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================= */
/* PAGE HEADER */
/* ============================================= */
.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
}

.page-header h1 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    color: var(--text-medium);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================= */
/* SERVICE PAGE CONTENT */
/* ============================================= */
.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    align-items: start;
}

.service-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content h2:first-child {
    margin-top: 0;
}

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

.service-content a {
    color: var(--accent);
    font-weight: 500;
}

.service-content a:hover {
    text-decoration: underline;
}

/* Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.sidebar-cta h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.sidebar-cta .btn {
    margin-bottom: 12px;
}

.sidebar-services,
.sidebar-info {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.sidebar-services h3,
.sidebar-info h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.sidebar-services ul,
.sidebar-info ul {
    list-style: none;
}

.sidebar-services li,
.sidebar-info li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.sidebar-services li::before,
.sidebar-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.sidebar-services a {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.sidebar-services a:hover {
    color: var(--accent);
}

.sidebar-info li {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ============================================= */
/* CONTENT PAGES (Legal, etc) */
/* ============================================= */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 1.5rem;
    margin-top: 48px;
    margin-bottom: 20px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 18px;
    color: var(--text-medium);
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-bottom: 18px;
    padding-left: 28px;
    color: var(--text-medium);
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* SMS Policy Styling */
.sms-policy,
.sms-terms {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
    border-left: 4px solid var(--accent);
    padding: 32px;
    margin: 40px 0;
    border-radius: 0 16px 16px 0;
}

.sms-policy h2,
.sms-terms h2 {
    margin-top: 0;
    color: var(--accent-dark);
}

.sms-section {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-300);
}

.sms-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sms-section h3 {
    color: var(--accent);
    margin-top: 0;
}

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

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

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--white);
}

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

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

.footer-column ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-column ul a:hover {
    color: var(--accent-light);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

/* ============================================= */
/* THANK YOU PAGE */
/* ============================================= */
.thank-you-section {
    text-align: center;
    padding: 120px 0;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    font-size: 3rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.thank-you-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-section p {
    color: var(--text-medium);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 36px;
}

/* ============================================= */
/* MOBILE NAVIGATION */
/* ============================================= */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    padding: 100px 24px 40px;
    overflow-y: auto;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gray-100);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 8px;
}

.mobile-nav ul a {
    display: block;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav .btn {
    width: 100%;
    margin-top: 32px;
}

/* ============================================= */
/* MOBILE STICKY CTA */
/* ============================================= */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 998;
}

.mobile-sticky-cta a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.35);
}

/* ============================================= */
/* RESPONSIVE */
/* ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

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

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .hero {
        padding: 70px 0 90px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-phone {
        display: none;
    }

    .header-cta .btn {
        display: none;
    }

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

    .service-card {
        flex-direction: row;
    }

    .service-card-image {
        width: 120px;
        height: auto;
        min-height: 140px;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        right: -25px;
    }

    .service-card-content {
        padding: 20px 20px 20px 40px;
    }

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

    .feature-item {
        padding: 30px 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

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

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

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

    .footer-legal {
        justify-content: center;
    }

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

    .cta-section h2 {
        font-size: 2rem;
    }

    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 85px;
    }

    body.no-sticky-cta {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card-image {
        width: 100%;
        height: 160px;
    }

    .service-card-icon {
        bottom: -25px;
        top: auto;
        left: 20px;
        right: auto;
        transform: none;
    }

    .service-card-content {
        padding: 35px 20px 20px;
    }

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

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* ============================================= */
/* NEW HOMEPAGE ELEMENTS */
/* ============================================= */

/* Hero Badge & Trust */
.hero-badge {
    display: inline-block;
    background: rgba(184, 134, 11, 0.2);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-trust {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-trust span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Button Variants */
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

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

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

/* Lead Text */
.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 32px;
}

/* ============================================= */
/* FEATURED SERVICES GRID */
/* ============================================= */
.services-section {
    background: var(--cream);
}

.services-grid-featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card-featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-card-featured .service-card-image {
    height: 100%;
    min-height: 300px;
}

.service-card-featured .service-card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-featured h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card-featured p {
    font-size: 1rem;
    margin-bottom: 24px;
}

.service-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.services-more {
    text-align: center;
    margin-top: 48px;
}

.services-more p {
    color: var(--text-medium);
    margin-bottom: 20px;
}

.services-more p a {
    color: var(--accent);
    font-weight: 500;
}

.services-more p a:hover {
    text-decoration: underline;
}

/* ============================================= */
/* WHY US SECTION */
/* ============================================= */
.why-us-section {
    background: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-us-features {
    margin-top: 40px;
    margin-bottom: 40px;
}

.why-us-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.why-us-feature:last-child {
    margin-bottom: 0;
}

.feature-icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(184, 134, 11, 0.3);
}

.why-us-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-us-feature p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.why-us-image {
    position: relative;
}

.why-us-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.why-us-stat {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 6px;
    line-height: 1.3;
}

/* ============================================= */
/* MATERIALS SECTION */
/* ============================================= */
.materials-section {
    background: var(--cream);
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.material-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.material-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.material-card h3 {
    font-size: 1.15rem;
    padding: 20px 20px 8px;
    margin: 0;
}

.material-card p {
    color: var(--text-medium);
    font-size: 0.9rem;
    padding: 0 20px 24px;
    margin: 0;
}

.material-card-highlight {
    border: 3px solid var(--accent);
}

.material-popular {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================= */
/* GALLERY ENHANCEMENTS */
/* ============================================= */
.gallery-section {
    background: var(--white);
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

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

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================= */
/* AREAS SECTION */
/* ============================================= */
.areas-section {
    background: var(--cream);
}

/* ============================================= */
/* CTA ENHANCEMENTS */
/* ============================================= */
.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

/* ============================================= */
/* FOOTER SOCIAL */
/* ============================================= */
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

/* ============================================= */
/* CONTAINER NARROW */
/* ============================================= */
.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================= */
/* CONTACT BOX */
/* ============================================= */
.contact-box {
    background: var(--cream);
    padding: 32px;
    border-radius: 16px;
    margin-top: 48px;
}

.contact-box h2 {
    margin-top: 0;
    font-size: 1.35rem;
}

/* ============================================= */
/* RESPONSIVE ADDITIONS */
/* ============================================= */
@media (max-width: 1024px) {
    .services-grid-featured {
        grid-template-columns: 1fr;
    }

    .service-card-featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }

    .service-card-featured .service-card-image {
        min-height: 250px;
    }

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

    .why-us-image {
        order: -1;
    }

    .why-us-stat {
        right: 20px;
        bottom: -20px;
    }

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

@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .why-us-content h2 {
        font-size: 2rem;
    }

    .why-us-stat {
        padding: 16px 24px;
    }

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

    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .gallery-item-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .services-grid-featured .service-card {
        flex-direction: column;
    }

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

    .why-us-stat {
        position: static;
        margin-top: 20px;
        border-radius: 12px;
    }
}
