/* ------------------------------------------------ */
/* Paradise Valley SEO - Custom Styles (style.css)  */
/* ------------------------------------------------ */

/* --- Custom Color Variables to Match Mockup --- */
:root {
    /* Brand Colors */
    --color-orange-500: #FF6B00;    /* Main Vibrant Orange */
    --color-orange-600: #CC5500;    /* Darker Orange for Gradient/Hover */
    --color-orange-800: #994000;    /* Deepest Orange for Gradients */

    /* Background & Text Colors */
    --color-bg-dark: #000000;      /* Pure Black */
    --color-bg-medium: #1A1A1A;    /* Dark Gray/Near Black (for Hero/Final CTA areas) */
    --color-bg-light: #F8F8F8;     /* Very light gray/Off-White (Process/Services section) */
    --color-text-light: #FFFFFF;
    --color-text-dark: #000000;
}

/* --- Global Base Styles and Tailwind Overrides --- */

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: 'Noto Sans', sans-serif;
}

/* Enforcing H1 style and size as requested */
.headline-h1 {
    font-size: 3.2rem; /* Exact size requested */
    line-height: 1.1;
    letter-spacing: -0.025em;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Base Color Utility Overrides for Visual Consistency */
.bg-black { background-color: var(--color-bg-dark) !important; }
.bg-gray-100 { background-color: var(--color-bg-light) !important; }
.bg-white { background-color: white !important; }
.text-orange-500 { color: var(--color-orange-500) !important; }
.border-orange-500 { border-color: var(--color-orange-500) !important; }
.text-black { color: var(--color-text-dark) !important; }


/* --- HEADER/NAV STYLES --- */
.nav-link {
    font-weight: 500;
    @apply text-white text-base hover:text-orange-500 transition-colors duration-300;
}
.cta-button-header {
    background-color: var(--color-orange-500);
    color: var(--color-text-dark);
    /* Buttons are fully rounded */
    @apply px-6 py-3 rounded-full font-semibold shadow-lg transition-all duration-300;
}
.cta-button-header:hover {
    background-color: var(--color-orange-600);
    @apply shadow-xl transform -translate-y-0.5;
}


/* --- HERO SECTION (image_fbcf42.jpg) --- */

/* Hero Background Gradient and Subtle Shadow */
.hero-bg-gradient {
    /* Subtle glow and dark colors */
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-medium) 60%, var(--color-bg-dark) 100%);
    box-shadow: inset 0 0 100px rgba(255, 107, 0, 0.15);
}

/* Hero Headline Gradient Text */
.hero-gradient-text {
    background-image: linear-gradient(to right, var(--color-orange-500), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Premium Badge Styles on Dark Background (Solid orange fill) */
.premium-badge-hero {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: var(--color-orange-500);
    color: var(--color-text-dark);
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
}
.premium-badge-hero i {
    color: #fff;
}

/* Inline Stat Boxes below Hero text - Corrected layout and colors */
.stat-box-hero {
    padding: 0.5rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background-color: var(--color-bg-dark) !important;
    line-height: 1.2;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}
.stat-box-hero i {
    color: var(--color-text-light); /* White icon */
    font-size: 0.9rem;
    padding-right: 0.25rem;
}
.stat-box-hero > div {
    text-align: left;
    line-height: 1.1;
}
.stat-box-hero .text-lg {
    font-size: 1.25rem;
    font-weight: 700;
}

/* CTA Button Primary (Orange Fill - Fully Rounded) */
.cta-button-primary {
    @apply inline-flex items-center justify-center px-10 py-4 rounded-full font-bold text-lg transition-all duration-300;
    background-color: var(--color-orange-500);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}
.cta-button-primary:hover {
    background-color: var(--color-orange-600);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.7);
}

/* CTA Button Secondary (Dark Outline - Fully Rounded) */
.cta-button-secondary-dark {
    @apply inline-block px-10 py-4 rounded-full font-bold text-lg transition-all duration-300;
    background: var(--color-bg-dark);
    border: 1px solid #555555;
    color: var(--color-text-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.cta-button-secondary-dark:hover {
    border-color: var(--color-orange-500);
    color: var(--color-orange-500);
}

/* Floating Stat Boxes on Image */
.floating-stat-box {
    position: absolute;
    padding: 1rem;
    border-radius: 0.5rem;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
    border: 1px solid;
    line-height: 1.2;
    background-color: var(--color-bg-dark);
}

/* Top Right Floating Box */
.floating-stat-box-top-right-image {
    top: 5px;
    right: 5px;
    border-color: var(--color-orange-500);
    color: var(--color-orange-500);
    background-color: var(--color-bg-dark);
}
.floating-stat-box-top-right-image i {
    color: var(--color-orange-500);
}

/* Bottom Left Floating Box - Set to solid orange fill */
.floating-stat-box-bottom-left-image {
    bottom: 5px;
    left: 5px;
    background-color: var(--color-orange-500);
    color: var(--color-text-dark); /* Black text */
    border-color: var(--color-bg-dark);
}
.floating-stat-box-bottom-left-image i {
    color: var(--color-text-dark);
}

/* Curve Separator (Dark to Light Transition) */
.hero-curve-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--color-bg-light);
    z-index: 5;
}


/* --- PROCESS/TIMELINE (image_fbcec5.jpg) --- */

/* Badge on light background */
.premium-badge-process {
    @apply inline-flex items-center px-4 py-1 rounded-full font-semibold text-sm;
    background-color: var(--color-orange-500);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Horizontal Line connecting process cards */
.process-horizontal-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: #E0E0E0;
    z-index: 1;
}

/* Process Card on Light Background */
.process-card-light {
    position: relative;
    padding: 1.5rem;
    min-height: 200px;
    background-color: white;
    border-radius: 0.75rem;
    border: 1px solid #E5E5E5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    z-index: 10;
}
.process-card-light:hover {
    border-color: var(--color-orange-500);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2);
}

/* Floating Number Badge (Top Right) */
.process-outer-box-light {
    position: absolute;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: var(--color-orange-500);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 20;
}

/* Floating Icon Box (Top Left) */
.process-inner-box-light {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background-color: var(--color-orange-500);
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.4);
    z-index: 20;
}

/* Orange Gradient CTA Box */
.cta-box-orange {
    background-image: linear-gradient(to right, var(--color-orange-500), var(--color-orange-600));
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

/* Button inside the Orange CTA box (White background, dark text - Fully Rounded) */
.cta-button-light-text-dark-bg {
    @apply inline-flex items-center justify-center px-8 py-3 rounded-full font-bold text-base;
    background-color: white;
    color: var(--color-text-dark);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

/* --- WHY US SECTION (image_fc95f1.jpg) --- */

/* Icon box for features list */
.why-us-feature-icon-box {
    width: 30px;
    height: 30px;
    background-color: var(--color-orange-500);
    @apply flex-shrink-0 rounded-full flex items-center justify-center text-sm text-black;
}

/* Experience Badge (on the right image) */
.experience-badge {
    background-color: var(--color-orange-500);
    color: var(--color-text-dark);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    line-height: 1.2;
}

/* --- SERVICES GRID (image_fbcf01.jpg) --- */
.service-box-light {
    background-color: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #E5E5E5;
}
.service-box-light:hover {
    border-color: var(--color-orange-500);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.15);
}
.service-box-icon-light {
    background-color: var(--color-orange-500);
    width: 56px;
    height: 56px;
    @apply flex items-center justify-center rounded-xl shadow-md;
}


/* --- FINAL CTA/CONTACT (image_fc43a1.jpg) --- */

/* Final CTA Background Gradient */
.final-cta-bg-gradient {
    background: radial-gradient(circle at center, #1A1A1A 0%, #000000 70%);
}

/* Final CTA Stat Boxes (empty boxes, text alignment) */
.stat-box-dark {
    padding: 1rem;
    border: 1px solid rgba(255, 107, 0, 0.3);
    border-radius: 0.5rem;
    background-color: rgba(26, 26, 26, 0.8);
    min-height: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}
.stat-box-dark p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Phone Button in Final CTA */
.cta-button-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--color-bg-dark);
    border: 1px solid #555555;
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.cta-button-phone:hover {
    background-color: var(--color-orange-500);
    border-color: var(--color-orange-500);
    color: var(--color-text-dark);
}

/* Footer Links */
.footer-link {
    @apply text-gray-400 hover:text-orange-500 transition-colors;
}
.social-icon {
    @apply w-8 h-8 bg-orange-500 rounded flex items-center justify-center text-black hover:bg-orange-600 transition-colors duration-300;
}

/* Mobile Menu Toggle */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}
#mobile-menu.active {
    max-height: 500px;
}
.mt-20.max-w-4xl.mx-auto.cta-box-orange {
  padding:50px;
}
.cta-button-light-text-dark-bg.rounded-full span {
    padding: 5px 10px;
}
.service-box-icon-light {
    align-content: center;
    text-align: center;
}

.cta-button-primary.rounded-full, .cta-button-header, .cta-button-secondary-dark.rounded-full, .premium-badge-process.mb-4.inline-block {
  padding:10px 20px;
  border-radius:20px;
}
.why-us-feature-icon-box {
  text-align:center;
  width:50px !important;
  height:48px !important;
  border-radius:10px;
  align-content: center;
}
