/* =========================================
   CSS Custom Properties (Variables)
   — Colors matched exactly from aaroglogo-stroke-and-fill.svg
   ========================================= */
   :root {
    /* Color Palette — exact from logo */
    --clr-primary-pink: #fef7f3;       /* Logo background warm peach-pink */
    --clr-primary-pink-dark: #fce4dc;  /* Logo's warm salmon-pink border */
    --clr-white: #ffffff;

    /* Logo gold tones */
    --clr-gold: #f8bc55;               /* Logo primary amber gold  */
    --clr-gold-btn: #de9932;           /* Slightly deeper for buttons (logo tone) */
    --clr-gold-light: #fdeaa7;         /* Logo's lightest gold highlight */
    --clr-gold-dark: #c8862d;          /* Logo's deep amber (darkest gold) */
    --clr-salmon: #e18175;             /* Logo's warm rosé-salmon accent */

    /* Typography & Text */
    --clr-text-main: #4a3a38;          /* Warm dark, harmonises with logo palette */
    --clr-text-heading: #2c2010;
    --clr-text-muted: #8a7a78;

    /* UI Elements */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;
    --box-shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 10px 30px rgba(222, 153, 50, 0.25);
    --transition-speed: 0.3s;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--clr-primary-pink);
    color: var(--clr-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--clr-text-heading);
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.golden-accent {
    color: var(--clr-gold);
}

.golden-border-bottom {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.golden-border-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--clr-gold);
    border-radius: var(--border-radius-pill);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--clr-gold-btn);
    color: var(--clr-white);
    box-shadow: 0 4px 12px rgba(222, 153, 50, 0.35);
}

.btn-primary:hover {
    background-color: var(--clr-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* =========================================
   Navigation
   ========================================= */
.navbar {
    background-color: rgba(254, 247, 243, 0.97);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow-subtle);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-heading);
    display: flex;
    align-items: center;
    gap: 12px;
}

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

@media (max-width: 900px) {
    .logo span {
        display: none;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--clr-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: width var(--transition-speed) ease;
}

.nav-links a.active::after, .nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-text-heading);
    cursor: pointer;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(254,247,243,1) 100%);
    text-align: center;
}

.hero-logo {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--clr-text-muted);
}

/* =========================================
   About Us Section
   ========================================= */
.about-us {
    padding: 80px 0;
}

.about-card {
    background-color: var(--clr-white);
    padding: 48px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-subtle);
    border: 1px solid var(--clr-primary-pink-dark);
    text-align: center;
}

.lead-text {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-subheading {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
    text-align: left;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.9;
    text-align: left;
    margin-bottom: 16px;
}

.welcome-line {
    text-align: center;
    font-size: 1.2rem;
    margin-top: 24px;
    color: var(--clr-gold-dark);
}

/* =========================================
   Services Grid
   ========================================= */
.services-preview {
    padding: 40px 0 80px;
    text-align: center;
}

.services-preview h2 {
    margin-bottom: 48px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background-color: var(--clr-white);
    padding: 40px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-subtle);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

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

.service-card i {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
}

/* =========================================
   Footer
   ========================================= */
footer {
    background-color: var(--clr-white);
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--clr-primary-pink-dark);
}

/* =========================================
   Floating Action Button (FAB)
   ========================================= */
.fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    padding: 0;
}

.fab img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.fab:hover {
    transform: scale(1.1);
}

/* Pulse animation for FAB */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(24, 157, 14, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(24, 157, 14, 0); }
    100% { box-shadow: 0 0 0 0 rgba(24, 157, 14, 0); }
}

.fab {
    animation: pulse 2.5s infinite;
}

/* =========================================
   Global Form & WhatsApp Modal
   ========================================= */
.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

label {
    font-weight: 500;
    color: var(--clr-text-heading);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.required {
    color: #d9534f;
}

.optional {
    color: var(--clr-text-muted);
    font-weight: 400;
    font-size: 0.85rem;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--clr-text-main);
    background-color: #fafafa;
    transition: all 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    background-color: var(--clr-white);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.wa-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.wa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wa-modal-content {
    background: var(--clr-white);
    width: 90%;
    max-width: 600px;
    border-radius: var(--border-radius-lg);
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    border: 1px solid var(--clr-gold-light);
    max-height: 90vh;
    overflow-y: auto;
}

.wa-modal-overlay.active .wa-modal-content {
    transform: translateY(0);
}

.wa-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.wa-modal-close:hover {
    color: var(--clr-primary-pink-dark);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none; /* Hide on mobile initially */
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-card {
        padding: 32px 20px;
    }
}
