/* ============================================================
   EDAMYKES INTEGRATED SERVICES LIMITED
   Design System — Deep Blue + Gold Corporate Theme
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap");

/* ── Root Variables ─────────────────────────────────────────── */
:root {
    --deep-blue: #0b2545;
    --mid-blue: #134074;
    --light-blue: #1a5276;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --gold-dark: #a07832;
    --cream: #faf7f2;
    --white: #ffffff;
    --text-dark: #0b1d35;
    --text-body: #3a4a5c;
    --text-muted: #7a8fa6;
    --border-light: rgba(201, 168, 76, 0.18);
    --shadow-sm: 0 2px 12px rgba(11, 37, 69, 0.08);
    --shadow-md: 0 8px 32px rgba(11, 37, 69, 0.14);
    --shadow-lg: 0 20px 60px rgba(11, 37, 69, 0.2);
    --transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: var(--text-dark);
    line-height: 1.25;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
p {
    margin-bottom: 0;
}

/* ── Bootstrap Overrides ────────────────────────────────────── */
.container {
    max-width: 1200px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
.eda-navbar {
    background: var(--deep-blue);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(11, 37, 69, 0.3);
}

.eda-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.eda-logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--deep-blue);
    letter-spacing: -1px;
    flex-shrink: 0;
}

.eda-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.eda-brand-name {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--white);
    letter-spacing: 0.3px;
}

.eda-brand-sub {
    font-size: 10px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.eda-navbar .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition);
    letter-spacing: 0.2px;
    position: relative;
}
/* 
.eda-navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.28s ease;
} */

.eda-navbar .nav-link:hover,
.eda-navbar .nav-link.active {
    color: var(--gold-light) !important;
    background: rgba(201, 168, 76, 0.1);
}

/* .eda-navbar .nav-link:hover::after,
.eda-navbar .nav-link.active::after {
    width: 60%;
} */

/* Dropdown */
.eda-navbar .dropdown-menu {
    background: var(--deep-blue);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px !important;
}

.eda-navbar .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13.5px;
    font-weight: 400;
    padding: 9px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.eda-navbar .dropdown-item:hover {
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold-light);
}

/* Contact CTA in nav */
.btn-nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-blue) !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-size: 13.5px !important;
    letter-spacing: 0.2px;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.35);
}

.btn-nav-cta:hover {
    background: linear-gradient(
        135deg,
        var(--gold-light),
        var(--gold)
    ) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.45) !important;
    color: var(--deep-blue) !important;
}

/* Mobile toggler */
.eda-toggler {
    border: 1.5px solid rgba(201, 168, 76, 0.4);
    border-radius: 8px;
    padding: 6px 10px;
    background: transparent;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.eda-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: var(--transition);
}

.eda-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.eda-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.eda-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .eda-navbar .navbar-collapse {
        background: var(--deep-blue);
        border-top: 1px solid rgba(201, 168, 76, 0.15);
        padding: 16px 0 20px;
        margin: 0 -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .eda-navbar .nav-link {
        padding: 10px 12px !important;
        font-size: 15px;
    }

    .btn-nav-cta {
        margin-top: 8px;
        text-align: center;
        display: block;
    }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--deep-blue);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5);
    color: var(--deep-blue);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    padding: 11px 28px;
    border-radius: 50px;
    border: 1.5px solid var(--gold);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.btn-blue {
    background: var(--deep-blue);
    color: var(--white);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-blue:hover {
    background: var(--mid-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ── Section Headers ─────────────────────────────────────────── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .accent {
    color: var(--gold);
    font-style: italic;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}

.divider-gold {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px;
    margin-bottom: 20px;
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 90vh;
    background: var(--deep-blue);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 20% 50%,
            rgba(201, 168, 76, 0.08) 0%,
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 20%,
            rgba(26, 82, 118, 0.6) 0%,
            transparent 50%
        ),
        linear-gradient(
            135deg,
            rgba(11, 37, 69, 0.95) 0%,
            rgba(19, 64, 116, 0.9) 100%
        );
    z-index: 0;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
}

.hero-image-side {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    z-index: 0;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-image-side::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--deep-blue) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .gold-word {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-num {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
    }
    .hero-content {
        padding: 60px 0;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    /* .hero-image-side {
        display: none;
    } */
}

/* ── Services Cards ──────────────────────────────────────────── */
.services-section {
    background: var(--cream);
    padding: 96px 0;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(11, 37, 69, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.25);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 37, 69, 0.7) 0%,
        transparent 60%
    );
}

.service-number {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--deep-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.service-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        rgba(11, 37, 69, 0.06),
        rgba(201, 168, 76, 0.12)
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.service-card-link:hover {
    gap: 10px;
    color: var(--gold);
}

/* ── Products Section ────────────────────────────────────────── */
.products-section {
    padding: 96px 0;
    background: var(--white);
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(11, 37, 69, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(201, 168, 76, 0.3);
}

.product-img-wrap {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--cream), rgba(201, 168, 76, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img-placeholder {
    font-size: 56px;
    opacity: 0.5;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--deep-blue);
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
}

.product-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.product-price strong {
    font-size: 20px;
    color: var(--gold-dark);
    font-family: "Playfair Display", serif;
}

/* ── WHY US Section ──────────────────────────────────────────── */
.why-section {
    background: var(--deep-blue);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(201, 168, 76, 0.07) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.why-section .section-title {
    color: var(--white);
}
.why-section .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}
.why-section .section-eyebrow {
    color: var(--gold);
}

.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: rgba(201, 168, 76, 0.2);
    border-color: var(--gold);
}

.feature-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
    background: linear-gradient(
        135deg,
        var(--gold-dark) 0%,
        var(--gold) 50%,
        var(--gold-light) 100%
    );
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    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.05'%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");
}

.cta-banner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--deep-blue);
    position: relative;
}

.cta-banner p {
    font-size: 17px;
    color: rgba(11, 37, 69, 0.75);
    position: relative;
}

/* ── Contact Page ─────────────────────────────────────────────── */
.contact-hero {
    background: var(--deep-blue);
    padding: 72px 0 48px;
    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(11, 37, 69, 0.06);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.25);
}

.contact-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.contact-icon-phone {
    background: linear-gradient(135deg, #e3f0ff, #bdd7f8);
}
.contact-icon-wa {
    background: linear-gradient(135deg, #e3f9e5, #b3f0bc);
}
.contact-icon-email {
    background: linear-gradient(135deg, #fff3e0, #ffd194);
}
.contact-icon-tg {
    background: linear-gradient(135deg, #e3f4ff, #94d4f0);
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.contact-card .contact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 16px;
    display: block;
}

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
    background: var(--deep-blue);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(201, 168, 76, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 16.5px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.breadcrumb-custom a {
    color: var(--gold);
}

.breadcrumb-custom a:hover {
    opacity: 0.8;
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
}

/* ── Service Detail Page ─────────────────────────────────────── */
.service-detail-section {
    padding: 80px 0;
}

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

.service-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--text-body);
}

.service-feature-list li::before {
    content: "✦";
    color: var(--gold);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

.service-img-showcase {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-img-showcase img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-grid img {
    border-radius: var(--radius);
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.gallery-grid img:first-child {
    grid-column: 1 / -1;
    height: 240px;
}

/* ── Footer ──────────────────────────────────────────────────── */
.eda-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand-name {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.footer-links a::before {
    content: "→";
    font-size: 12px;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
}

.footer-contact-item .icon {
    font-size: 16px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

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

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold);
}

/* ── Utility ─────────────────────────────────────────────────── */
.bg-cream {
    background: var(--cream);
}
.bg-deep {
    background: var(--deep-blue);
}
.text-gold {
    color: var(--gold) !important;
}

.section-pad {
    padding: 96px 0;
}

/* Image fallback placeholders using unsplash via picsum */
.img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #e8eef7 0%, #dde7f2 100%);
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

.fade-in-up-1 {
    animation-delay: 0.1s;
}
.fade-in-up-2 {
    animation-delay: 0.2s;
}
.fade-in-up-3 {
    animation-delay: 0.3s;
}
.fade-in-up-4 {
    animation-delay: 0.4s;
}

/* ── Responsive Helpers ──────────────────────────────────────── */
@media (max-width: 768px) {
    .section-pad {
        padding: 64px 0;
    }
    .services-section,
    .products-section,
    .why-section,
    .service-detail-section {
        padding: 64px 0;
    }
    .cta-banner {
        padding: 52px 0;
    }
    .contact-card {
        padding: 32px 24px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
