/* ---------- MODERN RESET / VARIABLES ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1e2b3c;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: 3.1rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #0a3144;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: #4a5c66;
    font-size: 1.1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---------- BLUE / WHITE / SOFT GRAY PALETTE ---------- */
:root {
    --primary-blue: #ce8414;
    --deep-blue: #C2A477;
    --soft-blue: #e6f0f5;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-600: #475569;
    --dark-bg: #1a2b3c;
    --shadow-sm: 0 10px 30px -5px rgba(0, 20, 30, 0.06);
    --shadow-md: 0 20px 35px -8px rgba(0, 60, 80, 0.1);
}

/* ---------- STICKY NAVBAR (TOGGLE ONLY) ---------- */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.company-name-nav {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-blue);
    letter-spacing: -0.02em;
}

/* hamburger toggle — always visible */
.menu-toggle {
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.menu-toggle:hover {
    transform: scale(1.05);
    color: var(--deep-blue);
}

/* full-screen slide menu (modern minimal) */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-md);
}

.fullscreen-menu.active {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 1.8rem;
    right: 2.5rem;
    font-size: 2.8rem;
    background: none;
    border: none;
    color: var(--deep-blue);
    cursor: pointer;
    transition: transform 0.2s;
}

.menu-close:hover {
    transform: rotate(90deg);
    color: var(--primary-blue);
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
}

.menu-links a {
    text-decoration: none;
    color: #1e3b4a;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

.menu-links a:hover {
    color: var(--primary-blue);
    transform: translateX(6px);
}

/* ---------- BUTTONS & UTILITIES ---------- */
.btn {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 1rem 2.2rem;
    border-radius: 40px;
    text-decoration: none;
    letter-spacing: -0.01em;
    border: none;
    transition: 0.25s ease;
    box-shadow: 0 8px 16px -6px rgba(15, 108, 140, 0.25);
    font-size: 1.1rem;
}

.btn:hover {
    background: var(--deep-blue);
    transform: translateY(-4px);
    box-shadow: 0 18px 28px -8px rgba(10, 75, 99, 0.4);
}

/* ---------- HEADER SECTION (LEGACY) ---------- */
.hero { padding: 9rem 0 6rem; color: white; }
.hero-grid { display: flex; flex-wrap: wrap; align-items: center; gap: 3rem; }
.hero-left { flex: 1 1 45%; }
.hero-left h1 { color: white; margin-bottom: 1.2rem; }
.hero-left p { color: rgba(255, 255, 255, 0.92); font-size: 1.3rem; margin-bottom: 2.2rem; }
.hero-right { flex: 1 1 35%; }
.stat-item { display: flex; align-items: center; gap: 0.8rem; font-size: 1.1rem; margin-bottom: 1rem; font-weight: 500; }
.stat-item i { color: var(--primary-blue); font-size: 1.4rem; }
.highlight-cta-box { margin-top: 1.5rem; padding: 1.2rem; border-radius: 24px; text-align: center; }

/* ---------- NEW HERO: DIAGONAL SPLIT LAYOUT ---------- */
.hero-new {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: linear-gradient(135deg, #0a4b63 0%, #0f6c8c 50%, #0d5a75 100%);
}

.hero-new-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 85vh;
    align-items: stretch;
}

/* Left: Content panel - solid gradient with angled edge */
.hero-content-panel {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4rem 4rem 4rem 6rem;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    background: linear-gradient(135deg, #0a4b63 0%, #0f6c8c 40%, #0d5a75 100%);
}

.hero-content-inner {
    max-width: 540px;
    animation: heroFadeIn 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content-inner h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.hero-content-inner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.hero-cta-row .btn {
    background: white;
    color: var(--deep-blue);
}

.hero-cta-row .btn:hover {
    background: var(--soft-blue);
    color: var(--deep-blue);
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 0.7rem 1.4rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    transition: all 0.25s ease;
}

.hero-phone-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    color: white;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 2rem;
}

.hero-stats-row span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.hero-stats-row i {
    color: #C2A477;
    font-size: 1.1rem;
}

/* Right: Image panel - image covers full right side */
.hero-image-panel {
    position: relative;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: heroImageSlide 1s ease-out 0.2s both;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroImageSlide {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Hero responsive */
@media (max-width: 1024px) {
    .hero-new-inner {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 0;
    }

    .hero-content-panel {
        clip-path: none;
        padding: 4rem 2rem;
    }

    .hero-image-panel {
        min-height: 380px;
    }
}

@media (max-width: 600px) {
    .hero-new { min-height: auto; }

    .hero-content-inner h1 {
        font-size: 2.2rem;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats-row {
        flex-direction: column;
    }
}

/* animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- ABOUT SECTION (long desc + feature boxes) ---------- */
.about-section {
    padding: 5rem 0;
    background: white;
}

.about-description {
    background: var(--gray-100);
    padding: 2.8rem;
    border-radius: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.about-description p {
    font-size: 1.18rem;
    margin-bottom: 1.2rem;
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: space-between;
}

.feature-item {
    background: white;
    flex: 1 1 200px;
    padding: 2rem 1.2rem;
    border-radius: 28px;
    text-align: center;
    transition: all 0.25s;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

/* ---------- PROFESSIONAL SERVICES (image + content alternating) ---------- */
.services-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0f4f8 100%);
    padding: 5rem 0;
}

.services-pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-pro-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-pro-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C2A477;
    margin-bottom: 1rem;
}

.services-pro-header h2 {
    margin-bottom: 0.8rem;
}

.services-pro-header p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
}

.services-pro-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-pro-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px -15px rgba(10, 75, 99, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-pro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -15px rgba(10, 75, 99, 0.2);
}

.service-pro-reverse {
    direction: rtl;
}

.service-pro-reverse > * {
    direction: ltr;
}

.service-pro-img {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.service-pro-img img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-pro-num {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-pro-reverse .service-pro-num {
    left: auto;
    right: 1.2rem;
}

.service-pro-content {
    padding: 2.5rem 3rem;
}

.service-pro-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--soft-blue) 0%, #e8f4f8 100%);
    border-radius: 16px;
    margin-bottom: 1.2rem;
}

.service-pro-icon i {
    font-size: 1.6rem;
    color: var(--primary-blue);
}

.service-pro-content h3 {
    color: var(--deep-blue);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.service-pro-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 900px) {
    .service-pro-card,
    .service-pro-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-pro-img {
        min-height: 220px;
    }

    .service-pro-img img {
        min-height: 220px;
    }

    .service-pro-content {
        padding: 2rem;
    }
}

/* ---------- FAQ ACCORDION ---------- */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.accordion {
    background: white;
    border-radius: 24px;
    border: 1px solid var(--gray-200);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-200);
}

.accordion-header {
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #0a3144;
}

.accordion-header i {
    transition: transform 0.3s;
    color: var(--primary-blue);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 2rem;
    transition: max-height 0.4s ease, padding 0.3s;
    background: #fcfdfe;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 0 2rem 1.5rem 2rem;
}

.accordion-content p {
    margin-bottom: 0;
}

/* ---------- SERVICE AREA (paragraph) ---------- */
.service-area {
    background: var(--soft-blue);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 48px;
    margin: 2rem auto;
}

.service-area p {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #1e3b4a;
}

/* ---------- ADDITIONAL SERVICES with 2 images ---------- */
.additional-services {
    padding: 5rem 0;
    background: white;
}

.add-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.add-text {
    flex: 1 1 40%;
}

.add-img {
    flex: 1 1 40%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.add-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.add-img:hover img {
    transform: scale(1.03);
}

.add-service-item {
    margin-bottom: 2rem;
}

.add-service-item h3 {
    color: var(--deep-blue);
}

/* ---------- CONTACT SPLIT + MAP ---------- */
.contact-section {
    background: var(--gray-100);
    padding: 5rem 0;
}

.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    background: white;
    border-radius: 36px;
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-left {
    flex: 1 1 35%;
}

.contact-left h3 {
    color: var(--deep-blue);
    margin-bottom: 1.8rem;
}

.contact-detail {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-detail i {
    font-size: 1.4rem;
    color: var(--primary-blue);
    width: 32px;
}

.contact-right {
    flex: 1 1 50%;
}

.map-frame {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

/* ---------- FOOTER UNIQUE DESIGN ---------- */
.footer {
    position: relative;
    background: linear-gradient(165deg, #0f1923 0%, #1a2b3c 45%, #152532 100%);
    color: #e2e8f0;
    padding: 0;
    overflow: hidden;
}



@keyframes footer-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.footer-logo i {
    font-size: 1.75rem;
    color: #C2A477;
    opacity: 0.95;
}

.footer-logo span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.35rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-tagline {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(194, 164, 119, 0.15);
    color: #C2A477;
    border: 1px solid rgba(194, 164, 119, 0.4);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.footer-cta:hover {
    background: #C2A477;
    color: #0f1923;
    border-color: #C2A477;
    transform: translateY(-1px);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C2A477;
    margin-bottom: 1.25rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-list li i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: #C2A477;
    font-size: 0.9rem;
}

.footer-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: #C2A477;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    display: inline-block;
    width: fit-content;
}

.footer-nav a::before {
    content: "→";
    margin-right: 0.5rem;
    color: #C2A477;
    opacity: 0;
    transition: opacity 0.2s ease, margin-right 0.2s ease;
}

.footer-nav a:hover {
    color: #fff;
}

.footer-nav a:hover::before {
    opacity: 1;
    margin-right: 0.65rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer .copyright {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}

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

    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .footer-tagline {
        max-width: none;
    }
}

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-inner {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .footer-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ---------- FULLY RESPONSIVE ---------- */
@media (max-width: 900px) {
    h1 {
        font-size: 2.4rem;
    }

    .sticky-nav {
        padding: 1rem 1.5rem;
    }

    .company-name-nav {
        font-size: 1.3rem;
    }

    .menu-links {
        font-size: 1.8rem;
    }

    .service-item-vert h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 1.5rem;
    }

    .feature-grid {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .add-layout {
        flex-direction: column;
    }
}




.comprehensive-services {
    background-color: #F9F6F2;
    /* Warm linen */
    padding: 5rem 1.5rem;
    font-family: 'Inter', sans-serif;
    color: #1E1B1A;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Header Styling */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gold-accent {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: #C2A477;
    display: block;
    margin-bottom: 0.75rem;
}

.services-header h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: #1E1B1A;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.subhead {
    font-size: 1.2rem;
    font-weight: 350;
    color: #4A4A4A;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 0;
    /* Sharp edges = sophistication */
    transition: all 0.2s ease;
    border: 1px solid #EDE8E1;
}

.service-card:hover {
    border-color: #C2A477;
    box-shadow: 0 8px 20px rgba(194, 164, 119, 0.08);
}

.icon-box {
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 2.2rem;
    color: #C2A477;
    /* Bronze/gold */
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #1E1B1A;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5A5A5A;
    margin: 0;
}

/* Comprehensive Footer Promise */
.comprehensive-footer {
    margin-top: 2rem;
    border-top: 1px solid #DFD8D0;
    padding-top: 2.5rem;
}

.promise-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #FFFFFF;
    padding: 1.5rem 2rem;
    border-left: 6px solid #C2A477;
    font-size: 1.1rem;
    color: #2A2A2A;
}

.promise-block i {
    font-size: 2.2rem;
    color: #C2A477;
}

.promise-block strong {
    font-weight: 600;
    color: #1E1B1A;
}

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

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

    .services-header h2 {
        font-size: 2.4rem;
    }

    .promise-block {
        flex-direction: column;
        text-align: center;
    }
}