@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary: #1a3c34;
    --primary-light: #2a5a4e;
    --primary-dark: #0f2b25;
    --accent: #c8952e;
    --accent-light: #e0b04a;
    --accent-dark: #a87a1e;
    --bg: #faf8f4;
    --bg-alt: #f0ece4;
    --white: #ffffff;
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --text-muted: #999;
    --border: #e5e0d8;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

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

.section-chevron {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    opacity: 0.25;
    transition: opacity var(--transition);
}
.section-chevron:hover {
    opacity: 0.6;
}
.section-chevron svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    animation: bounceDown 2.5s ease-in-out infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}

.btn-gold {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(200, 149, 46, 0.35);
}
.btn-gold:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200, 149, 46, 0.45);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 1.125rem;
}

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: all var(--transition);
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    padding: 6px 0;
}
.site-header.scrolled .logo img {
    filter: none;
}

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

.logo img {
    width: 220px;
    height: auto;
    transition: all var(--transition);
}
.site-header.scrolled .logo img {
    width: 180px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
}
.main-nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.03em;
    padding: 4px 0;
    position: relative;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}
.main-nav a:hover::after {
    width: 100%;
}
.site-header.scrolled .main-nav a {
    color: var(--text);
}
.main-nav a:hover {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span {
    background: var(--text);
}

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 30%, var(--primary-light) 60%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,149,46,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.hero-overlay {
    position: absolute;
    inset: 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%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Floating Shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200,149,46,0.12) 0%, transparent 70%);
    top: -60px;
    right: -80px;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(200,149,46,0.1);
    bottom: 10%;
    left: -40px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 80px;
    height: 80px;
    background: rgba(200,149,46,0.06);
    top: 55%;
    right: 15%;
    animation: floatShape 18s ease-in-out infinite 3s;
}

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

.hero-location {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border: 1px solid rgba(200,149,46,0.3);
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-logo {
    margin: 0 auto 28px;
    width: 320px;
    height: auto;
    filter: brightness(0) invert(1);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.15;
}

.hero h1 .gold {
    font-weight: 300;
}

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

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hero-tagline .gold {
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-phone {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-light);
    padding: 12px 24px;
    border: 2px solid rgba(200,149,46,0.3);
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.hero-phone:hover {
    border-color: var(--accent);
    background: rgba(200,149,46,0.1);
    color: var(--accent-light);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 1;
    opacity: 0.5;
    transition: opacity var(--transition);
}

.hero-scroll:hover {
    opacity: 0.8;
}

.hero-scroll-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-scroll-icon {
    width: 24px;
    height: 24px;
    color: rgba(255,255,255,0.4);
    animation: bounceDown 2.5s ease-in-out infinite;
}

/* Button Shimmer */
.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s ease-in-out infinite;
}
}

/* ---- About ---- */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.about-heading-accent {
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-bottom: 24px;
}

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

.about-text strong {
    color: var(--primary);
    font-weight: 600;
}

.about-highlight {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: rgba(200,149,46,0.06);
    border-left: 3px solid var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 24px;
}

.about-highlight-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    color: var(--accent);
    padding: 6px;
    background: rgba(200,149,46,0.1);
    border-radius: 10px;
}

.about-highlight-icon svg {
    width: 100%;
    height: 100%;
}

.about-highlight p {
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 0;
}

.about-highlight strong {
    color: var(--primary);
}

.about-signoff {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 20px;
    font-style: italic;
}

.about-signoff strong {
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
}

.about-ratings {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stars {
    color: var(--accent);
    font-size: 1.15rem;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.rating-label {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.9rem;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.value-chip {
    display: inline-block;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(26, 60, 52, 0.06);
    border: 1px solid rgba(26, 60, 52, 0.1);
    border-radius: 50px;
    letter-spacing: 0.03em;
    transition: all var(--transition);
}

.value-chip:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    height: 320px;
}

.about-frame-leaf {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: slowSpin 30s linear infinite;
}

.about-monogram {
    width: 220px;
    height: auto;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ---- Services ---- */
.services {
    background: var(--bg);
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 32px 36px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

.service-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}
.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-card:hover .service-icon {
    animation: pulse 0.6s ease;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.service-sub {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 16px;
}

.service-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-card li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}
.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

/* ---- Partner Card ---- */
.partner-card {
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}
.partner-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.partner-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 36px 40px;
}

.partner-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    color: var(--primary);
    padding: 12px;
    background: rgba(26, 60, 52, 0.08);
    border-radius: 14px;
}

.partner-icon svg {
    width: 100%;
    height: 100%;
}

.partner-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.partner-sub {
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 12px;
}

.partner-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 700px;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.partner-list li {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.partner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.partner-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.partner-contact .btn {
    padding: 10px 28px;
    font-size: 0.95rem;
}

.partner-contact-sep {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.partner-email {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary);
}

.partner-email:hover {
    color: var(--accent);
}

/* ---- Why Us ---- */
.why-us {
    background: var(--white);
}

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

.feature {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.feature:hover {
    background: var(--bg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    color: var(--primary);
    padding: 12px;
    border-radius: 16px;
    background: rgba(26, 60, 52, 0.08);
    transition: all var(--transition);
}
.feature:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}
.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

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

/* ---- Stats Strip ---- */
.stats-strip {
    background: var(--primary);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}
.stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(200,149,46,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    color: var(--white);
    position: relative;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ---- Testimonials ---- */
.testimonials {
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.testimonials-footer {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.testimonials-footer p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.testimonials-footer strong {
    color: var(--primary);
    font-weight: 600;
}

/* ---- Contact ---- */
.contact {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}
.contact-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    color: var(--accent);
    padding: 8px;
    background: rgba(200, 149, 46, 0.1);
    border-radius: 10px;
}
.contact-item-icon svg {
    width: 100%;
    height: 100%;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.phone-label {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.85rem;
    display: inline-block;
    min-width: 52px;
}

.contact-item .small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.plus-code {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 0.85rem;
}
.plus-code a {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.02em;
}
.plus-code a:hover {
    color: var(--accent-dark);
}

.plus-code-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: help;
}

.plus-code-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    transition: all var(--transition);
}
.plus-code-icon:hover {
    background: var(--accent);
    color: var(--white);
}

.plus-code-tip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    padding: 10px 14px;
    background: var(--primary-dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    z-index: 10;
    white-space: normal;
    text-align: center;
}
.plus-code-tip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary-dark);
}
.plus-code-info:hover .plus-code-tip {
    display: block;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
}
.contact-item a:hover {
    color: var(--accent);
}

.cta-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 48px 40px;
    text-align: center;
    color: var(--white);
}

.cta-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-sub {
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.6);
}

/* ---- Footer ---- */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding: 48px 0 32px;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    margin-bottom: 16px;
}
.footer-logo img {
    margin: 0 auto 8px;
    width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}
.footer-logo p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

.footer-tagline {
    margin-bottom: 16px;
}

.footer-links {
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--accent-light);
}

.footer-sep {
    color: rgba(255,255,255,0.2);
    margin: 0 10px;
}
.footer-tagline p {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--accent-light);
    letter-spacing: 0.04em;
}
.footer-phone {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
}
.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all var(--transition);
    box-shadow: 0 4px 16px rgba(200,149,46,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(200,149,46,0.45);
}
.back-to-top svg {
    width: 22px;
    height: 22px;
}

/* ---- Reveal Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---- Keyframes ---- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    50% { transform: translate(30px, -40px) scale(1.1); opacity: 0.6; }
    90% { opacity: 1; }
}
@keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(8px); opacity: 1; }
}
@keyframes shimmer {
    0% { left: -75%; }
    30% { left: 125%; }
    100% { left: 125%; }
}
@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }
    .section-header {
        margin-bottom: 48px;
    }
    .section-header h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
    .hero-location {
        font-size: 0.75rem;
        padding: 4px 14px;
        margin-bottom: 20px;
    }
    .hero-logo {
        width: 220px;
    }
    .hero-tagline {
        font-size: 1.05rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 14px;
    }
    .hero-phone {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    .hero-scroll {
        bottom: 24px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-frame {
        width: 220px;
        height: 220px;
    }
    .about-monogram {
        width: 160px;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    .about-rating {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .about-highlight {
        padding: 16px 18px;
    }
    .about-highlight-icon {
        width: 30px;
        height: 30px;
    }
    .about-values {
        gap: 6px;
    }
    .value-chip {
        font-size: 0.78rem;
        padding: 4px 12px;
    }

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

    .partner-card-inner {
        flex-direction: column;
        gap: 20px;
        padding: 28px 24px;
    }
    .partner-icon {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
    .partner-contact {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .section-chevron {
        display: none;
    }

    .about-ratings {
        flex-direction: column;
    }

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

    .testimonials-footer p {
        font-size: 0.85rem;
    }

    .stats-strip {
        padding: 48px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .stat-number {
        font-size: 2.2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .cta-card {
        padding: 36px 24px;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        padding: 80px 32px 32px;
        transition: right var(--transition);
    }
    .main-nav.open {
        right: 0;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 8px;
    }
    .main-nav a {
        color: var(--text);
        font-size: 1.05rem;
        display: block;
        padding: 12px 0;
    }

    .nav-toggle {
        display: flex;
    }
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-location {
        font-size: 0.7rem;
        padding: 3px 12px;
        margin-bottom: 16px;
    }
    .hero-logo {
        width: 180px;
    }
    .hero-tagline {
        font-size: 0.95rem;
    }
    .hero-desc {
        font-size: 0.95rem;
    }
    .hero-phone {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .hero-scroll {
        display: none;
    }
    .logo img {
        width: 160px;
    }
    .site-header.scrolled .logo img {
        width: 140px;
    }
    .btn-lg {
        padding: 14px 36px;
        font-size: 1rem;
    }

    .stats-strip {
        padding: 40px 0;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .stat-number {
        font-size: 1.8rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
}
