/* Daignault Property Service LLC - CSS
 * Color Scheme based on brand identity:
 * - Primary Purple: #606CAB
 * - Secondary Dark: #1a1a1a
 * - Background: #ffffff / #f5f5f7
 */

:root {
    --color-primary: #606CAB;
    --color-primary-dark: #4E5A93;
    --color-primary-light: #7B85BF;
    --color-secondary: #1a1a1a;
    --color-secondary-light: #333333;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-bg-light: #f5f5f7;
    --color-white: #ffffff;
    --color-black: #000000;

    --font-primary: 'Open Sans', sans-serif;
    --font-heading: 'Oswald', sans-serif;

    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 14px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 108, 171, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background-color: var(--color-bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-phone svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-secondary);
    height: var(--header-height);
    transition: background-color 0.3s ease;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header-logo {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 6px;
}

.header-logo img {
    height: 65px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--color-white);
    background-color: rgba(96, 108, 171, 0.3);
}

/* Services Dropdown */
.dropdown-toggle .dropdown-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-secondary);
    min-width: 260px;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 8px 0;
    z-index: 1001;
}

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

.nav-menu > li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-dropdown li a:hover {
    background-color: rgba(96, 108, 171, 0.2);
    color: var(--color-white);
    padding-left: 24px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 16px;
}

.header-phone {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

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

.header-phone svg {
    width: 16px;
    height: 16px;
}

.header-cta {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.header-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #1877f2;
    border-radius: 50%;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.header-social:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
}

.header-social svg {
    width: 18px;
    height: 18px;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    margin-top: var(--header-height);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.75) 0%,
        rgba(96, 108, 171, 0.55) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Page Hero (shorter) */
.hero-page {
    min-height: 45vh;
}

.hero-page h1 {
    font-size: 48px;
}

/* Gradient-only hero (no bg image) */
.hero-gradient {
    background: linear-gradient(
        135deg,
        var(--color-secondary) 0%,
        var(--color-primary-dark) 100%
    );
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section {
    padding: 80px 0;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.section-dark .section-header h2,
.section-purple .section-header h2 {
    color: var(--color-white);
}

.section-header p {
    font-size: 17px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p,
.section-purple .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

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

.service-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-text);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
    height: 200px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card-content {
    padding: 24px;
}

.service-card-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.service-card-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: 12px;
    transition: gap 0.3s ease;
}

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

.service-card-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   ABOUT PREVIEW (Homepage)
   ============================================ */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-preview-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.about-preview-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.about-preview-text p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    color: #f5c518;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: var(--color-primary-light);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-purple .cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.section-dark .cta-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ============================================
   SERVICE DETAIL PAGE (2-column layout)
   ============================================ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

.service-content h2 {
    font-size: 30px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.service-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.service-content p {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

/* Sticky Sidebar */
.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.sidebar-cta {
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

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

.sidebar-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.sidebar-cta .btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
}

.sidebar-cta .btn:last-child {
    margin-bottom: 0;
}

.sidebar-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    transition: color 0.3s ease;
}

.sidebar-phone:hover {
    color: var(--color-primary-light);
}

.sidebar-phone svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-bio {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-bio-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-bio-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: top center;
}

.about-bio-text h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-secondary);
}

.about-bio-text p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.value-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--color-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(96, 108, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-primary);
}

.value-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   SERVICES OVERVIEW PAGE
   ============================================ */
.services-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-overview-card {
    display: flex;
    gap: 24px;
    background: var(--color-white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--color-text);
}

.service-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-overview-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background-color: rgba(96, 108, 171, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overview-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-primary);
}

.service-overview-text h3 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.service-overview-text p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ============================================
   CONTACT PAGE & FORM
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--color-secondary);
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(96, 108, 171, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--color-primary);
}

.contact-info-text h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--color-secondary);
    text-transform: none;
    font-family: var(--font-primary);
    font-weight: 600;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 15px;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-info-text a:hover {
    color: var(--color-primary);
}

/* Contact Form Wrapper */
#contact-form-container {
    background: var(--color-secondary);
    border-radius: 8px;
    padding: 36px;
}

#contact-form-container h3 {
    color: var(--color-white);
    font-size: 22px;
    margin-bottom: 24px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.contact-form label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    padding: 12px 16px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.12);
}

.contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='rgba(255,255,255,0.6)'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form select option {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

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

.btn-submit {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 108, 171, 0.4);
}

.form-errors {
    grid-column: 1 / -1;
    background: rgba(255, 87, 87, 0.15);
    border: 1px solid rgba(255, 87, 87, 0.3);
    border-radius: 4px;
    padding: 12px 16px;
}

.form-errors .error {
    color: #ff6b6b;
    font-size: 14px;
    margin: 4px 0;
}

/* Success Message */
.contact-success {
    text-align: center;
    padding: 48px 24px;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
}

.success-icon svg {
    width: 100%;
    height: 100%;
    fill: #4CAF50;
}

.contact-success h3 {
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.contact-success p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.success-submessage {
    margin-top: 16px;
    font-size: 14px !important;
}

.success-submessage a {
    color: var(--color-primary-light);
    font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background-color: var(--color-secondary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 6px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background-color: #1877f2;
    color: var(--color-white);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #166fe5;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    fill: var(--color-primary-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-hours p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-top: 12px;
}

.footer-nav {
    list-style: none;
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.footer-bottom a {
    color: var(--color-primary-light);
    transition: color 0.3s ease;
}

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

/* ============================================
   MOBILE CALL BUTTON
   ============================================ */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: var(--color-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(96, 108, 171, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
}

.mobile-call-btn:hover {
    background-color: var(--color-primary-dark);
    transform: scale(1.1);
}

.mobile-call-btn svg {
    width: 24px;
    height: 24px;
    fill: var(--color-white);
}

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

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .about-preview {
        gap: 40px;
    }

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

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

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

/* ============================================
   RESPONSIVE - 768px
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--color-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 24px 24px;
        transition: right 0.3s ease;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .header-nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

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

    .nav-menu > li > a {
        padding: 14px 0;
        width: 100%;
    }

    /* Mobile Dropdown */
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: auto;
        padding: 0 0 8px 16px;
        display: none;
    }

    .nav-menu > li:hover .nav-dropdown,
    .nav-menu > li.dropdown-open .nav-dropdown {
        display: block;
    }

    .nav-dropdown li a {
        padding: 10px 0;
    }

    .nav-dropdown li a:hover {
        padding-left: 4px;
    }

    .header-actions {
        margin-left: 0;
        margin-top: 16px;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .header-cta {
        text-align: center;
        width: 100%;
    }

    .header-social {
        width: 100%;
        height: auto;
        padding: 12px;
        border-radius: 6px;
        gap: 10px;
    }

    .header-social::after {
        content: 'Follow us on Facebook';
        font-size: 14px;
        font-weight: 600;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-page h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* Content */
    .about-preview {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-bio {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

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

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

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

    /* Section sizing */
    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    /* Show mobile call button */
    .mobile-call-btn {
        display: flex;
    }
}

/* ============================================
   RESPONSIVE - 480px
   ============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-page h1 {
        font-size: 26px;
    }

    .hero-tagline {
        font-size: 13px;
        letter-spacing: 3px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

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

    #contact-form-container {
        padding: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .sidebar-cta {
        padding: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }
}
