/* 
   Color Palette:
   Primary: Deep Green/Emerald (#064D3B) & Rich Cream/Off-White (#FDFBF7)
   Secondary: Gold/Bronze (#C5A059) & Dark Brown/Charcoal (#2D2A26)
*/

:root {
    --primary-color: #064D3B;
    --primary-dark: #043629;
    --primary-light: #0d8065;
    --secondary-color: #C5A059;
    --secondary-hover: #b08d4a;
    --bg-color: #FDFBF7;
    --text-color: #2D2A26;
    --text-light: #5A544C;
    --white: #FFFFFF;
    
    --font-heading: 'Amiri', serif;    /* Traditional & Elegant Calligraphy */
    --font-body: 'Tajawal', sans-serif; /* Clean Geometric Body text */

    --glass-bg: rgba(253, 251, 247, 0.85);
    --glass-border: rgba(197, 160, 89, 0.2);
    --glass-shadow: 0 8px 32px rgba(6, 77, 59, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-padding {
    padding: 100px 0;
}

.separator {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin-top: 15px;
    margin-bottom: 30px;
    border-radius: 2px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    gap: 10px;
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #1EBE5D;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(6, 77, 59, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(6, 77, 59, 0.5);
}

.btn-block {
    width: 100%;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(1px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}

.mobile-menu a {
    display: block;
    font-size: 1.2rem;
    padding: 10px;
    font-weight: 500;
}

/* --- Hero Section Redesigned (Minimalist) --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 80px; /* Account for navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-dark); /* Fallback while image loads */
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(4, 54, 41, 0.65), rgba(4, 54, 41, 0.65)),
        url("images/new.png");
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: blur(1px);
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 80px);
    text-align: center;
}

.hero-text-box {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 28px 16px;
}

.hero-title-new {
    font-family: var(--font-body); /* Bold geometric font like in the image */
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    color: var(--bg-color);
    margin-bottom: 0;
    line-height: 1.1;
    font-weight: 800;
    text-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.hero-title-new .highlight {
    color: var(--secondary-color);
}

.hero-subtitle-new {
    font-size: clamp(1.35rem, 2.5vw, 2.1rem);
    color: rgba(253, 251, 247, 0.95);
    margin-bottom: 0;
    font-weight: 500;
    font-family: var(--font-body);
}

.hero-desc-new {
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    color: rgba(253, 251, 247, 0.85);
    margin-bottom: 8px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-cta {
    margin: 0;
}

.hero-cta.btn-primary {
    font-size: 1.25rem;
    padding: 14px 34px;
    background-color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-cta.btn-secondary {
    font-size: 1.25rem;
    padding: 14px 34px;
    color: var(--bg-color);
    border: 2px solid var(--secondary-color);
    background: transparent;
}

.hero-cta.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.hero-cta.btn-primary:hover {
    background-color: rgba(4, 54, 41, 0.92);
}

.hero-socials {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 8px;
}

.hero-socials .social-icon {
    width: 52px;
    height: 52px;
    background: rgba(253, 251, 247, 0.08);
    color: rgba(253, 251, 247, 0.92);
    border: 1px solid rgba(253, 251, 247, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: var(--transition);
}

.hero-socials .social-icon:hover {
    background: rgba(197, 160, 89, 0.16);
    color: var(--bg-color);
    border-color: rgba(197, 160, 89, 0.55);
    transform: translateY(-3px);
}

.hero-image-box {
    display: block;
}

.hero-image-box img {
    max-width: 140%; /* Break out of its grid limit */
    width: 850px; /* Explicit massive width */
    height: auto;
    object-fit: contain;
    object-position: bottom left; /* Anchor bottom left */
    display: block; /* Remove bottom gap */
    margin-left: -15%; /* Push it fully into the left boundary of the screen */
}

@keyframes heroTextFadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-text-box > * {
    opacity: 0;
    animation: heroTextFadeUp 800ms ease-out forwards;
}

.hero-text-box > *:nth-child(1) { animation-delay: 120ms; }
.hero-text-box > *:nth-child(2) { animation-delay: 220ms; }
.hero-text-box > *:nth-child(3) { animation-delay: 320ms; }
.hero-text-box > *:nth-child(4) { animation-delay: 420ms; }
.hero-text-box > *:nth-child(5) { animation-delay: 520ms; }

@media screen and (max-width: 992px) {
    .hero-section {
        min-height: auto;
    }
    .hero-container {
        padding-top: 50px;
        gap: 0;
    }
    .hero-text-box {
        text-align: center;
        margin-bottom: 30px;
    }
    .hero-socials {
        justify-content: center;
    }
}

@media screen and (max-width: 768px) {
    .hero-text-box {
        padding: 22px 12px;
    }
}

/* --- About Section (Template Style) --- */
.about-template {
    min-height: 100vh;
    display: flex;
    background-color: var(--bg-color); /* Matches the clean template look */
    padding-top: 70px; /* Offset for navbar */
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.split-layout {
    display: flex;
    width: 100%;
    align-items: stretch;
    flex-wrap: wrap; /* responsive */
}

/* Photo on right (RTL first child) */
.split-photo {
    flex: 0 0 40%;
    position: relative;
    border-left: 20px solid var(--white); /* Template has a little framing effect */
}

.split-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.split-content {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-color); /* Soft warm off-white */
}

.header-group {
    position: relative;
    margin-bottom: 40px;
}

.hero-name {
    font-size: 4.5rem;
    color: var(--text-color);
    font-family: var(--font-body); /* More geometric like template */
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.1;
}

.name-highlight {
    color: var(--secondary-color); /* Gold accent */
}

.about-section {
    background-color: var(--white);
    border-bottom: 2px solid rgba(0,0,0,0.05);
}

.about-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
}

.about-text-col {
    flex: 1;
}

.about-image-col {
    flex: 0 0 400px;
}

.square-image-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background-color: var(--primary-color);
}

.square-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

.square-image-container:hover img {
    transform: scale(1.05);
}

.about-text .lead {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 2;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-list i {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
    background: rgba(197, 160, 89, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.about-list span {
    flex: 1;
}

.details-grid-centered {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 40px;
    margin-bottom: 20px;
}

.detail-block {
    text-align: center;
    min-width: 250px;
}

.detail-block h3 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--secondary-color);
    padding-bottom: 5px;
    display: inline-block;
}

.detail-block ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-block ul li {
    font-size: 1rem;
    color: var(--text-color);
}

.detail-block ul li a {
    color: var(--primary-color);
    font-weight: 500;
}

.detail-block ul li a:hover {
    color: var(--secondary-color);
}

@media screen and (max-width: 768px) {
    .about-content-box {
        padding: 40px 20px;
    }
    .hero-name {
        font-size: 2.8rem;
    }
    .details-grid-centered {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    .detail-block {
        margin-bottom: 20px;
    }
}

/* --- Services Section --- */
.services {
    background-color: #F8F5EF; /* Slightly darker than bg to contrast */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: transparent;
    perspective: 1000px;
    height: 380px; /* Fixed height for consistent flip */
}

.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.service-card:hover .service-card-inner,
.service-card-inner.force-flip {
    transform: rotateY(180deg);
}

.service-card-front, .service-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
}

.service-card-front {
    background: var(--white);
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-bottom: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card-back {
    background: var(--primary-dark);
    color: var(--white);
    transform: rotateY(180deg);
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(6, 77, 59, 0.2);
    border-bottom: 4px solid var(--secondary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.service-card-front h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card-front p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.service-card-back h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 10px;
}

.service-card-back ul {
    text-align: right;
    list-style: none;
    padding: 0;
}

.service-card-back ul li {
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    padding-right: 20px;
    color: #dedede;
    line-height: 1.5;
}

.service-card-back ul li::before {
    content: "\f00c"; /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--secondary-color);
    font-size: 0.85rem;
}

.service-card-back p {
    color: #dedede;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Consultation Section --- */
.consultation {
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="p" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M50 0L100 50L50 100L0 50Z" fill="none" stroke="%23c5a059" stroke-width="0.5" stroke-opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="%23064d3b"/><rect width="100%" height="100%" fill="url(%23p)"/></svg>');
    background-size: cover;
    color: var(--white);
}

.consultation h2 {
    color: var(--secondary-color);
}

.consultation-split {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.booking-box {
    flex: 1;
    background: rgba(4, 54, 41, 0.85); /* Darker glass context */
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.booking-box h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
    color: var(--secondary-color);
}

.booking-box p {
    font-size: 1.1rem;
    color: #dedede;
    margin-bottom: 25px;
    line-height: 1.6;
}

.price-callout {
    font-size: 1.3rem !important;
    font-weight: bold;
    color: var(--white) !important;
}

.price-callout span {
    color: #25D366; /* Standout color for price */
    font-size: 1.5rem;
}

.booking-form .form-group.row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: var(--white);
    color: var(--text-color);
    transition: var(--transition);
}

/* Specific margin for inputs */
.booking-form .form-group textarea {
    margin-bottom: 20px;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #888888; /* Darker grey placeholder */
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.contract-options {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-contract {
    flex: 1;
    padding: 12px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-contract:hover {
    background: rgba(255,255,255,0.15);
}

.btn-contract.active {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(6, 77, 59, 0.4);
}

.contract-actions {
    margin-top: auto; /* Pushes to bottom */
}

.contract-actions .note {
    font-size: 0.95rem;
    color: #e0e0e0;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    border-right: 3px solid var(--secondary-color);
    display: block;
    margin-bottom: 20px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

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

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

.contact-info {
    padding-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none !important;
    background: rgba(6, 77, 59, 0.03);
    border: 1px solid transparent;
}

.info-item:hover {
    background: var(--white);
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--glass-border);
}

.info-icon {
    width: 55px;
    height: 55px;
    background: rgba(6, 77, 59, 0.08);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(10deg);
}

.info-text h4 {
    margin-bottom: 0;
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-color);
    transition: var(--transition);
}

.info-item:hover .info-text h4 {
    color: var(--primary-color);
}

.info-text a {
    color: var(--text-light);
    font-size: 1.1rem;
    direction: ltr; /* keep email LTR */
    display: inline-block;
}

.info-text a:hover {
    color: var(--primary-color);
}

.contact-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-form-container {
    padding: 40px;
    background: var(--white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background-color: #fcfcfc;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-dark);
    color: #dedede;
    padding: 40px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: #dedede;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}
/* --- Multi-step Form & Payment --- */
.form-step {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.btn-payment {
    flex: 1;
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    color: var(--white);
}

.btn-vodafone {
    background-color: #E60000;
}
.btn-vodafone:hover, .btn-vodafone.active {
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.4);
    border-color: var(--white);
}

.btn-instapay {
    background-color: #6C23A5; /* InstaPay Purple */
}
.btn-instapay:hover, .btn-instapay.active {
    box-shadow: 0 5px 15px rgba(108, 35, 165, 0.4);
    border-color: var(--white);
}

.payment-details-box {
    background: rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.number-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.number-display span {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--text-color);
    letter-spacing: 2px;
}

#btnCopyNumber {
    background: var(--bg-color);
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

#btnCopyNumber:hover {
    background: var(--primary-color);
    color: var(--white);
}

.warning-banner {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: rgba(230, 57, 70, 0.15);
    border-right: 4px solid #E63946;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.warning-banner i {
    color: #E63946;
    font-size: 1.5rem;
    margin-top: 3px;
}

.warning-banner p {
    color: #ffd0d3 !important;
    font-size: 0.95rem !important;
    margin-bottom: 0 !important;
}

.file-upload-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--white);
}

.file-upload-group input[type="file"] {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    color: var(--white);
    border: 1px dashed rgba(255,255,255,0.4);
    cursor: pointer;
}

.step-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.step-actions .btn {
    flex: 1;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(1px);
}

.modal-box {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    color: var(--text-color);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-icon.warning i {
    font-size: 4rem;
    color: #E63946;
    margin-bottom: 20px;
}

.modal-box h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.modal-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

@media screen and (max-width: 576px) {
    .modal-actions {
        flex-direction: column;
    }
}

/* --- Animations & Utilities --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Responsive Design --- */
@media screen and (max-width: 992px) {
    .consultation-split {
        flex-direction: column;
    }
    
    .booking-form .form-group.row {
        flex-direction: column;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .split-layout {
        flex-direction: column;
    }
    
    .split-photo {
        flex: 0 0 500px;
        width: 100%;
        border-left: none; /* removed template border on mobile */
    }

    .about-split {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .about-image-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }

    .about-text-col .separator {
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .split-photo {
        flex: 0 0 350px;
    }

    .split-content {
        padding: 50px 5%;
    }

    .hero-name {
        font-size: 3rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }
}