.contact-hero {
  background: var(--clr-dark);
  padding: 110px 0 90px;
  color: #ffff;
  margin-top: 4rem;
}

.hero-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.65;
  margin-bottom: 40px;
}







/* ============ SECTION 4 WRAPPER ============ */
.section-book-call {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    background: var(--clr-bg);
}

.section-book-call .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* ============ FLOATING DECOR SHAPES ============ */
.decor-shapes .shape-green {
    width: 260px;
    height: 260px;
    background: var(--clr-light, #00e676);
    opacity: 0.08;
    position: absolute;
    top: -40px;
    left: -40px;
    border-radius: 50%;
    filter: blur(80px);
    animation: float-slow 10s ease-in-out infinite;
}

.decor-shapes .shape-dark {
    width: 330px;
    height: 330px;
    background: var(--clr-dark);
    opacity: 0.12;
    position: absolute;
    right: -60px;
    bottom: -60px;
    border-radius: 50%;
    filter: blur(90px);
    animation: float-slower 14s ease-in-out infinite;
}

/* ============ HEADER ============ */
.call-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.call-header h2 {
    font-size: 3rem;
    color: var(--clr-dark);
    margin-bottom: 1rem;
}

.call-header p {
    font-size: 1.1rem;
    color: var(--clr-primary);
    line-height: 1.7;
}

/* Trust badges */
.trust-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    color: var(--clr-primary);
    font-size: 0.9rem;
}

.trust-row div span {
    width: 8px;
    height: 8px;
    background: var(--clr-light);
    display: inline-block;
    margin-right: 6px;
}

/* ============ CALENDLY WRAPPER ============ */
.calendly-wrapper {
    background: var(--clr-dark);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}












/* Section Wrapper */
.contact-channels-section {
    padding: 5rem 0;
    background: var(--clr-bg);
}

/* Header */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.25rem;
    color: var(--clr-dark);
}
.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

/* Cards */
.contact-card {
    background: var(--clr-dark);
    padding: 2.3rem;
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.28);
}

/* Icons */
.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.icon-wrapper i {
    font-size: 2rem;
    color: var(--clr-light);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}
.contact-card p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
}

/* Contact Values */
.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-light);
    cursor: pointer;
    line-height: 1.4;
}
.copy-tag {
    display: block;
    font-size: 0.85rem;
    opacity: 0.3;
    margin-top: 3px;
    color: wheat;
}

/* Map Link */
.map-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--clr-light);
    opacity: 0.8;
}
.map-link:hover {
    opacity: 1;
}

/* Hours Strip */
.hours-strip {
    margin-top: 3rem;
    text-align: center;
    background: var(--clr-dark);
    color: var(--clr-light);
    padding: 1.2rem 2rem;
    font-size: 1.05rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.9s ease forwards;
}
.slide-up {
    opacity: 0;
    transform: translateY(60px);
    animation: slideUp 1s ease forwards;
}

.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
.delay-4 { animation-delay: .8s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}













.contact-form-section {
    padding: 5rem 0;
    background: var(--clr-bg);
    border-top: 1px solid rgba(0,0,0,0.6);
}

.form-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3rem;
}
.form-header h2 {
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
    color: var(--clr-dark);
}
.form-header p {
color: #000;}

/* Form Container */
.form-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: var(--clr-dark);
    padding: 3rem;
    box-shadow: 0 12px 34px rgba(0,0,0,0.22);
    position: relative;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 2rem;
}
.form-row .form-group {
    flex: 1;
}
.form-group.full {
    margin-top: 1.6rem;
}

/* Labels */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}
.form-group label span {
    color: var(--clr-light);
}

/* Inputs */
input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: var(--clr-light);
    font-size: 1rem;
    transition: border 0.25s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--clr-light);
    outline: none;
}
textarea {
    height: 160px;
    resize: none;
}

/* Error Messages */
.error-msg {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #ff6b6b;
    visibility: hidden;
}

/* Submit Button */
.submit-btn {
    margin-top: 2rem;
    width: 100%;
    padding: 1.1rem;
    font-size: 1.1rem;
    background: var(--clr-light);
    border: none;
    color: var(--clr-dark);
    cursor: pointer;
    transition: transform 0.25s ease;
}
.submit-btn:hover {
    transform: translateY(-3px);
}

/* Success Box */
.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--clr-bg);
    margin-top: 1.5rem;
}
.form-success i {
    font-size: 3.3rem;
    color: var(--clr-light);
}
.form-success h3 {
    margin-top: 1rem;
    font-size: 1.8rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}
.slide-up {
    opacity: 0;
    transform: translateY(70px);
    animation: slideUp 1.1s ease forwards;
}
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1.2rem;
    }
}











