html,
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* ─── HERO ─────────────────────────────────────── */
.cc-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0A1520 100%);
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

.cc-hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .05;
    background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2280%22 height=%2280%22%3E%3Cpath d=%22M40 0L80 40L40 80L0 40Z%22 fill=%22none%22 stroke=%22%23AE8225%22 stroke-width=%221%22/%3E%3Cpath d=%22M40 10L70 40L40 70L10 40Z%22 fill=%22none%22 stroke=%22%23AE8225%22 stroke-width=%221%22/%3E%3C/svg%3E');
}

.cc-hero-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(174, 130, 37, .12) 0%, transparent 65%);
}

.cc-line-l,
.cc-line-r {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.cc-line-l {
    left: 0;
}

.cc-line-r {
    right: 0;
}

.cc-line-b {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cc-arabic {
    font-family: 'Amiri', serif;
    font-size: 26px;
    color: rgba(174, 130, 37, .65);
    margin-bottom: 16px;
}

.cc-tag {
    display: inline-block;
    font-family: 'Amiri', serif;
    font-size: 12px;
    color: var(--gold-light);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 7px 28px;
    border: 1px solid rgba(174, 130, 37, .45);
}

.cc-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(30px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.1;
}

.cc-title span {
    color: var(--gold-light);
}

.cc-sub {
    color: rgba(255, 255, 255, .55);
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 22px;
    line-height: 1.8;
}

.cc-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cc-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    bottom: -10px;
    animation: ccFloat linear infinite;
}

@keyframes ccFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(1);
    }

    10% {
        opacity: .5;
    }

    90% {
        opacity: .1;
    }

    100% {
        opacity: 0;
        transform: translateY(-140px) scale(.2);
    }
}

.cc-rv {
    opacity: 0;
    transform: translateY(22px);
    animation: ccRv .75s cubic-bezier(.25, .46, .45, .94) forwards;
}

@keyframes ccRv {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cc-sr {
    opacity: 0;
    transition: opacity .75s ease, transform .75s cubic-bezier(.25, .46, .45, .94);
}

.cc-sr[data-dir="up"] {
    transform: translateY(40px);
}

.cc-sr[data-dir="left"] {
    transform: translateX(-45px);
}

.cc-sr[data-dir="right"] {
    transform: translateX(45px);
}

.cc-sr.in {
    opacity: 1 !important;
    transform: translate(0) !important;
}

/* ─── INFO SECTION ──────────────────────────────
           BG: white | Cards: navy | Height: fixed/stable
        ─────────────────────────────────────────────── */
.c-info-section {
    background: #ffffff;
    /* ✅ white bg */
    padding: 65px 0;
    border-top: 1px solid rgba(174, 130, 37, .12);
    border-bottom: 1px solid rgba(174, 130, 37, .15);
}

/* Equal-height columns */
.c-info-section .row {
    align-items: stretch;
}

.c-info-section .col-lg-4,
.c-info-section .col-md-6 {
    display: flex;
}

.c-info-card {
    background: var(--navy);
    /* ✅ navy card */
    border: 1px solid rgba(174, 130, 37, 0.25);
    padding: 40px 28px;
    text-align: center;
    transition: all .35s;
    position: relative;
    overflow: hidden;
    width: 100%;
    /* ✅ full column width */

    /* ✅ Fixed min-height — content add hone se layout nahi tutega */
    min-height: 200px;

    /* ✅ Flex column so content stays vertically centered */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Gold bottom bar on hover */
.c-info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform .35s;
}

/* Left gold accent line — always visible, subtle */
.c-info-card::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}

.c-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: #0d2035;
    /* slightly lighter navy on hover */
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25),
        0 0 0 1px rgba(174, 130, 37, .15);
}

.c-info-card:hover::before {
    transform: scaleX(1);
}

/* Gold variant card */
.c-info-card--gold {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
}

.c-info-card--gold::before {
    background: rgba(255, 255, 255, 0.4) !important;
}

.c-info-card--gold:hover {
    background: var(--gold-dark) !important;
}

/* Icon */
.c-info-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    /* ✅ icon size stable */
    background: rgba(174, 130, 37, 0.1);
    border: 1px solid rgba(174, 130, 37, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 24px;
    color: var(--gold);
    transition: all .35s;
}

.c-info-card--gold .c-info-icon {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
    color: var(--white);
}

.c-info-card:hover .c-info-icon {
    transform: scale(1.1) rotate(8deg);
    background: rgba(174, 130, 37, 0.18);
}

/* Title */
.c-info-title {
    font-family: 'Cinzel', serif;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 1.2px;
}

/* Lines — ✅ word-break so long text wraps cleanly */
.c-info-line {
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.75;
    margin: 0;
    word-break: break-word;
    /* ✅ long emails won't overflow */
    max-width: 100%;
}

.c-info-card--gold .c-info-line {
    color: rgba(255, 255, 255, 0.85);
}

/* ─── MAIN SECTION ──────────────────────────────── */
.cc-main-section {
    background: var(--off-white);
    padding: 80px 0 90px;
}

/* Form wrap */
.cc-form-wrap {
    background: var(--white);
    border: 1px solid rgba(174, 130, 37, .12);
    padding: 44px 40px;
    box-shadow: 0 4px 30px rgba(13, 27, 42, .06);
    position: relative;
}

.cc-form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    background-size: 200% 100%;
    animation: ccShimmer 3s linear infinite;
}

@keyframes ccShimmer {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 200% 0%;
    }
}

.cc-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.cc-form-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(22px, 3vw, 30px);
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 10px;
}

.cc-form-title span {
    color: var(--gold);
}

.cc-form-sub {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.75;
}

.cc-form-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0 28px;
}

.cc-field {
    position: relative;
    margin-bottom: 4px;
}

.cc-field label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
    transition: color .3s;
}

.cc-field label span {
    color: var(--gold);
}

.cc-field.focused label {
    color: var(--gold);
}

.cc-field input,
.cc-field textarea,
.cc-field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(174, 130, 37, .2);
    background: var(--off-white);
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--text-dark);
    outline: none;
    border-radius: 0;
    transition: border-color .3s, background .3s;
    -webkit-appearance: none;
    appearance: none;
}

.cc-field input:focus,
.cc-field textarea:focus,
.cc-field select:focus {
    border-color: var(--gold);
    background: var(--white);
}

.cc-field textarea {
    resize: vertical;
    min-height: 130px;
}

.cc-field--select {
    position: relative;
}

.cc-select-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    color: var(--gold);
    font-size: 11px;
    pointer-events: none;
}

.cc-field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s;
}

.cc-field input:focus~.cc-field-line,
.cc-field textarea:focus~.cc-field-line,
.cc-field select:focus~.cc-field-line {
    transform: scaleX(1);
}

.cc-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 14px 34px;
    border: 2px solid var(--navy);
    cursor: pointer;
    transition: all .3s;
}

.cc-submit-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.cc-submit-btn i {
    transition: transform .3s;
}

.cc-submit-btn:hover i {
    transform: translateX(5px) rotate(15deg);
}

/* Sidebar */
.cc-sidebar-box {
    overflow: hidden;
    border: 1px solid rgba(174, 130, 37, .15);
}

.cc-sidebar-box--light {
    background: var(--white);
}

.cc-sidebar-box--dark {
    background: var(--navy);
}

.cc-sb-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--navy);
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    border-bottom: 1px solid rgba(174, 130, 37, .2);
}

.cc-sidebar-box--dark .cc-sb-header {
    background: rgba(174, 130, 37, .1);
}

.cc-sb-header i {
    color: var(--gold);
    font-size: 13px;
}

.cc-sb-body {
    padding: 20px 22px;
}

.cc-hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid rgba(174, 130, 37, .08);
}

.cc-day {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: var(--text-mid);
}

.cc-time {
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

.cc-time--gold {
    color: var(--gold-dark);
}

.cc-hours-note {
    margin-top: 16px;
    padding: 10px 14px;
    background: rgba(174, 130, 37, .06);
    border-left: 3px solid var(--gold);
    font-family: 'Lato', sans-serif;
    font-size: 12px;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cc-hours-note i {
    color: var(--gold);
}

.cc-social-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(174, 130, 37, .1);
    text-decoration: none;
    transition: all .3s;
}

.cc-social-row:hover {
    padding-left: 8px;
}

.cc-social-row span {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    flex: 1;
    transition: color .3s;
}

.cc-social-row:hover span {
    color: var(--gold-light);
}

.cc-social-arrow {
    color: rgba(174, 130, 37, .4);
    font-size: 11px;
    transition: all .3s;
}

.cc-social-row:hover .cc-social-arrow {
    color: var(--gold-light);
    transform: translateX(4px);
}

.cc-social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .3s;
    flex-shrink: 0;
}

.cc-social--fb .cc-social-icon {
    background: #1877f2;
    color: #fff;
}

.cc-social--ig .cc-social-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.cc-social--yt .cc-social-icon {
    background: #ff0000;
    color: #fff;
}

.cc-social--wa .cc-social-icon {
    background: #25d366;
    color: #fff;
}

.cc-social-row:hover .cc-social-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Map */
.cc-map-wrap {
    position: relative;
    border-top: 3px solid var(--gold);
}

.cc-map-label {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 9px 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(174, 130, 37, .4);
}

@media (max-width: 767px) {
    .c-info-card {
        padding: 32px 20px;
        min-height: 180px;
    }

    .cc-form-wrap {
        padding: 30px 22px;
    }
}
