/* =====================================================
   CATALINA HOME PROS - Premium Design
   ===================================================== */

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

:root {
    /* Premium Color Palette */
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --dark: #2a2a2a;
    --gray-dark: #4a4a4a;
    --gray: #6a6a6a;
    --gray-light: #9a9a9a;
    --silver: #c4c4c4;
    --off-white: #f5f5f3;
    --cream: #faf9f7;
    --white: #ffffff;
    
    /* Accent Colors */
    --copper: #b87333;
    --copper-light: #d4915a;
    --copper-dark: #8b5a2b;
    --gold: #c9a227;
    --teal: #2a7a72;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-ui: 'Inter', -apple-system, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--charcoal);
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.01em;
}

h3 { 
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-family: var(--font-body);
    font-weight: 600;
}

p { 
    color: var(--gray);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 4px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--copper-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.4);
}

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

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

.btn-dark:hover {
    background: var(--black);
}

.btn-large {
    padding: 22px 48px;
    font-size: 0.95rem;
}

/* =====================================================
   TOP BAR
   ===================================================== */
.top-bar {
    background: var(--charcoal);
    color: var(--silver);
    padding: 12px 0;
    font-family: var(--font-ui);
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    opacity: 0.8;
}

.top-bar-right a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-content { justify-content: center; }
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.header.scrolled .nav a { color: var(--charcoal); }
.header.scrolled .logo-img { filter: none; }
.header.scrolled .header-phone { color: var(--charcoal); }

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.logo-img {
    height: 130px;
    width: auto;
    transition: all 0.4s ease;
}

.header.scrolled .logo-img {
    height: 80px;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-ui);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--copper);
    transition: width 0.3s ease;
}

.nav a:hover { color: var(--copper-light); }
.nav a:hover::after { width: 100%; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.header-phone:hover { color: var(--copper-light); }

.header-cta { 
    display: none;
    background: var(--copper) !important;
    padding: 14px 28px !important;
}

@media (min-width: 1200px) {
    .header-cta { display: inline-flex; }
}

@media (max-width: 1024px) {
    .header-phone { display: none; }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.header.scrolled .mobile-menu-btn span {
    background: var(--charcoal);
}

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, transparent 50%),
        linear-gradient(225deg, rgba(42, 122, 114, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(26,26,26,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 60px 20px;
}

.hero-logo-wrapper {
    margin-bottom: 40px;
}

.hero-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-tagline {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 24px;
    padding: 12px 24px;
    border: 1px solid rgba(184, 115, 51, 0.3);
    border-radius: 2px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero .highlight {
    color: var(--copper-light);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--silver);
    margin-bottom: 48px;
    line-height: 1.8;
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--silver);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, var(--copper) 0%, transparent 100%);
    margin: 16px auto 0;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

@media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero-logo { width: 200px; }
    .hero-cta { flex-direction: column; }
    .btn-large { width: 100%; }
    .hero-scroll { display: none; }
}

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
    background: var(--white);
    padding: 0;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 48px 24px;
    border-right: 1px solid rgba(0,0,0,0.06);
    transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
    background: var(--cream);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--copper);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: var(--font-ui);
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
    .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 500px) {
    .stat-number { font-size: 2.5rem; }
    .stat-item { padding: 32px 16px; }
}

/* =====================================================
   SECTION STYLING
   ===================================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 20px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
}

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

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

@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--copper);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

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

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    margin-bottom: 12px;
    color: var(--charcoal);
}

.service-card > p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: var(--gray);
}

.service-list {
    list-style: none;
    text-align: left;
    font-size: 0.9rem;
}

.service-list li {
    padding: 8px 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
    content: '→';
    color: var(--copper);
    font-size: 0.8rem;
}

.services-cta {
    text-align: center;
    margin-top: 64px;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--charcoal);
    margin-bottom: 24px;
}

/* =====================================================
   WHY US
   ===================================================== */
.why-us {
    padding: var(--section-padding) 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 115, 51, 0.1) 0%, transparent 100%);
}

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

.why-us .section-tag {
    color: var(--copper-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr; }
}

.why-card {
    padding: 48px 36px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
}

.why-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.why-card p {
    color: var(--silver);
    line-height: 1.8;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.review-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    font-family: var(--font-ui);
}

.stars {
    color: var(--copper);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
    background: var(--cream);
    padding: 40px;
    position: relative;
    border: none;
    transition: all 0.4s ease;
}

.review-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 6rem;
    color: var(--copper);
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

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

.review-stars {
    color: var(--copper);
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.review-text {
    font-size: 1.05rem;
    color: var(--charcoal);
    font-style: italic;
    margin-bottom: 28px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

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

.author-avatar {
    width: 52px;
    height: 52px;
    background: var(--charcoal);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--charcoal);
    font-family: var(--font-ui);
}

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

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

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

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 28px;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-features {
    margin: 36px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--charcoal);
    font-family: var(--font-ui);
    font-size: 0.95rem;
}

.check {
    color: var(--copper);
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
}

/* =====================================================
   SERVICE AREA
   ===================================================== */
.service-area {
    padding: 80px 0;
    background: var(--charcoal);
}

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

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: rgba(255,255,255,0.05);
    color: var(--silver);
    padding: 14px 28px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--copper);
    color: var(--white);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
    background: var(--cream);
    padding: 36px;
    border-left: 3px solid var(--copper);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    margin-bottom: 16px;
    color: var(--charcoal);
    font-size: 1.1rem;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.8;
}

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

.quote-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%3Cpath d='M30 30m-1 0a1 1 0 1 0 2 0a1 1 0 1 0-2 0' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .quote-grid { grid-template-columns: 1fr; gap: 48px; }
}

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

.quote-content .section-tag {
    color: rgba(255,255,255,0.8);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 16px;
    display: inline-block;
    margin-bottom: 20px;
}

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

.quote-content > p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 36px;
    line-height: 1.8;
}

.quote-benefits {
    margin-bottom: 36px;
}

.quote-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-ui);
}

.quote-benefit span {
    color: #4ade80;
    font-weight: bold;
}

.quote-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.quote-phone {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.8rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.quote-phone:hover { opacity: 0.8; }

.quote-form-wrapper {
    background: var(--white);
    padding: 48px;
    box-shadow: var(--shadow-xl);
}

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

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

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
    .quote-form-wrapper { padding: 32px 24px; }
}

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e5e5e5;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--cream);
}

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

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

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

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
    padding: 80px 0;
    background: var(--cream);
}

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

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.contact-item {
    text-align: center;
    padding: 32px;
    background: var(--white);
    transition: all 0.3s ease;
}

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

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

.contact-item h4 {
    font-family: var(--font-ui);
    margin-bottom: 12px;
    color: var(--charcoal);
}

.contact-item a {
    color: var(--copper);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.contact-item p {
    font-size: 0.95rem;
    margin-top: 4px;
}

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

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

@media (max-width: 900px) {
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 500px) {
    .footer-main { grid-template-columns: 1fr; text-align: center; }
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--gray-light);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--copper-light);
}

.footer-contact p {
    color: var(--gray-light);
    padding: 8px 0;
    font-size: 0.95rem;
}

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

@media (max-width: 600px) {
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* =====================================================
   FLOATING CTA
   ===================================================== */
.floating-cta {
    position: fixed;
    bottom: 100px;
    right: 32px;
    background: var(--copper);
    color: var(--white);
    padding: 18px 24px;
    text-decoration: none;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(184, 115, 51, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(184, 115, 51, 0.5);
}

.floating-icon { font-size: 1.2rem; }

@media (max-width: 768px) {
    .floating-cta {
        bottom: 80px;
        right: 20px;
        padding: 16px;
    }
    .floating-text { display: none; }
}

/* =====================================================
   MOBILE CALL BUTTON
   ===================================================== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    z-index: 1000;
}

@media (max-width: 768px) {
    .mobile-call-btn { display: block; }
    body { padding-bottom: 60px; }
}

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

.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    .section-header {
        margin-bottom: 48px;
    }
}
