/* ====================================
   VARIABLES & THEME
   ==================================== */
:root {
    --primary-color: #C9184A;
    --secondary-color: #FF4D6D;
    --accent-gold: #FFD700;
    --accent-orange: #FF6B35;
    --bg-cream: #FFF8F0;
    --bg-light: #FFF5EB;
    --text-dark: #2C2C2C;
    --text-gray: #666666;
    --text-light: #999999;
    --border-light: #E8E8E8;
    --shadow-soft: 0 4px 20px rgba(201, 24, 74, 0.1);
    --shadow-medium: 0 8px 30px rgba(201, 24, 74, 0.15);
    --shadow-strong: 0 12px 40px rgba(201, 24, 74, 0.2);
}

/* ====================================
   GLOBAL STYLES & OVERFLOW FIXES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
}

/* CRITICAL FIX: Remove inner scrollbars */
section,
.container,
.container-fluid,
.row,
div[class*="col-"],
.service-box,
.promise-card,
.timeline-content,
.emotion-quote,
.savings-box,
.pricing-card,
.wedding-type-card,
.emotion-point,
.point-content {
    overflow: visible !important;
}

section {
    padding: 100px 0;
    position: relative;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

img {
    max-width: 100%;
    height: auto;
}

/* Ensure AOS animations don't create scrollbars */
[data-aos] {
    overflow: visible !important;
    pointer-events: auto;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

.text-highlight {
    color: var(--primary-color);
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ====================================
   TOP BAR
   ==================================== */
.top-bar {
    background: var(--text-dark);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
}

.top-info span {
    margin-right: 30px;
}

.top-info i {
    color: var(--accent-gold);
    margin-right: 8px;
}

.top-social a {
    color: white;
    margin-left: 15px;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.top-social a:hover {
    color: var(--accent-gold);
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    background: white;
    box-shadow: var(--shadow-soft);
    padding: 15px 0;
    transition: all 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-medium);
}

.nav-logo {
    height: 55px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: calc(100% - 40px);
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* ====================================
   FLOATING BUTTONS
   ==================================== */
.floating-contacts {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s;
}

.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-float {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.float-btn:hover {
    transform: scale(1.05);
    color: white;
}

.float-btn i {
    font-size: 1.5rem;
}

.float-text {
    font-size: 0.95rem;
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero-banner {
    background: linear-gradient(135deg, #FFF8F0 0%, #FFE4E4 100%);
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(201, 24, 74, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.hero-tag i {
    color: var(--accent-gold);
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-medium);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
    color: white;
}

.btn-hero-outline {
    background: white;
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    background: var(--primary-color);
    color: white;
}

.hero-trust {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.hero-image-grid {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    object-fit: cover;
}

.img-1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 3;
}

.img-2 {
    width: 45%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.img-3 {
    width: 35%;
    height: 40%;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
}

/* ====================================
   EMOTIONAL SECTION
   ==================================== */
.emotional-section {
    background: white;
    padding: 120px 0;
}

.emotion-images {
    position: relative;
}

.emotion-img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
}

.emotion-quote {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-strong);
    max-width: 350px;
    border-left: 4px solid var(--primary-color);
}

.emotion-quote i {
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.emotion-quote p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

.emotion-quote span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.emotion-content {
    padding-left: 40px;
}

.emotion-points {
    margin-top: 40px;
}

.emotion-point {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.point-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.point-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.point-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ====================================
   SERVICES SECTION
   ==================================== */
.services-section {
    background: var(--bg-light);
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
}

.service-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-box p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ====================================
   JOURNEY TIMELINE
   ==================================== */
.journey-section {
    background: white;
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 200px;
    bottom: 100px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.journey-timeline {
    margin-top: 80px;
    position: relative;
}

.timeline-item {
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
    padding-right: 80px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-left: 80px;
}

.timeline-content {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    max-width: 500px;
    position: relative;
    border: 2px solid var(--border-light);
}

.timeline-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    border: 5px solid white;
    box-shadow: var(--shadow-medium);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -115px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -115px;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ====================================
   WEDDING TYPES
   ==================================== */
.wedding-types-section {
    background: var(--bg-light);
}

.wedding-type-card {
    position: relative;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s;
}

.wedding-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.wedding-type-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: all 0.4s;
}

.wedding-type-card:hover .type-overlay {
    background: linear-gradient(to bottom, rgba(201,24,74,0.4), rgba(201,24,74,0.9));
}

.type-content {
    color: white;
}

.type-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
}

.type-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.type-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.type-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.type-locations span {
    background: rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.type-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.type-features span {
    font-size: 0.95rem;
}

.type-features i {
    margin-right: 8px;
}

/* ====================================
   PRICING SECTION
   ==================================== */
.pricing-section {
    background: white;
}

.pricing-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-strong);
    transform: rotate(-3deg);
    transition: all 0.4s;
}

.pricing-highlight:hover {
    transform: rotate(0deg) scale(1.05);
}

.pricing-number {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.price-value {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin: 15px 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.price-desc {
    font-size: 1.2rem;
    opacity: 0.95;
}

.pricing-note {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-explanation h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.savings-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
}

.savings-box.highlight {
    background: linear-gradient(135deg, rgba(201,24,74,0.05), rgba(255,77,109,0.05));
    border-left: 4px solid var(--accent-gold);
}

.savings-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.savings-box h4 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.savings-box p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.savings-box ul {
    margin: 15px 0 0;
    padding-left: 20px;
}

.savings-box ul li {
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.7;
}

.pricing-example {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    margin-top: 60px;
    border: 3px solid var(--primary-color);
}

.pricing-example h4 {
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.example-calc {
    max-width: 700px;
    margin: 0 auto;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 2px solid var(--border-light);
    font-size: 1.1rem;
}

.calc-line.highlight {
    background: rgba(255,215,0,0.1);
    padding: 25px 30px;
    border-radius: 15px;
    margin: 15px 0;
    border: 2px solid var(--accent-gold);
}

.calc-line.total {
    border-bottom: none;
    border-top: 3px solid var(--primary-color);
    margin-top: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    padding-top: 25px;
}

.example-note {
    text-align: center;
    color: var(--text-gray);
    margin-top: 30px;
    font-size: 1.05rem;
    line-height: 1.9;
}

/* ====================================
   GALLERY
   ==================================== */
.gallery-section {
    background: var(--bg-light);
}

.wedding-gallery {
    margin-top: 60px;
}

.gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s;
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-strong);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.gallery-img:hover img {
    transform: scale(1.1);
}

/* ====================================
   PROMISE SECTION
   ==================================== */
.promise-section {
    background: white;
}

.promise-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.promise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
    background: white;
}

.promise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.promise-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.promise-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
    background: var(--bg-light);
    padding: 120px 0;
}

.contact-info-list {
    margin-top: 50px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-item i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.contact-info-item h5 {
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-info-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

.contact-info-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(201,24,74,0.15);
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .form-text {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ====================================
   FOOTER
   ==================================== */
.footer-section {
    background: var(--text-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
    text-decoration: none;

}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.footer-menu,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.7;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ====================================
   BUTTONS
   ==================================== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* ====================================
   UTILITIES
   ==================================== */
.text-success {
    color: #28a745 !important;
}

.alert {
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* ====================================
   LIGHTBOX OVERLAY
   ==================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

/* ====================================
   RESPONSIVE - TABLET
   ==================================== */
@media (max-width: 991px) {
    .section-heading {
        font-size: 2.5rem;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-image-grid {
        height: 400px;
        margin-top: 50px;
    }
    
    .emotion-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .emotion-quote {
        position: static;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .top-bar {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .top-info span {
        display: none;
    }
    
    .top-social {
        text-align: center !important;
    }
    
    .navbar {
        padding: 8px 0 !important;
    }
    
    .nav-logo {
        height: 40px;
    }
    
    .navbar-toggler {
        padding: 5px 8px;
        font-size: 1rem;
    }
    
    /* TABLET TIMELINE FIX */
    .journey-section::before {
        left: 35px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 95px;
        margin-right: 0;
        text-align: left;
        padding: 25px;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: 0 !important;
        right: auto !important;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
    
    .gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ====================================
   RESPONSIVE - MOBILE
   ==================================== */
@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* HIDE TOP BAR ON MOBILE */
    .top-bar {
        display: none;
    }
    
    /* COMPACT NAVBAR */
    .navbar {
        padding: 5px 0 !important;
    }
    
    .nav-logo {
        height: 32px !important;
    }
    
    .navbar-toggler {
        padding: 4px 6px;
        font-size: 0.9rem;
    }
    
    /* HERO ADJUSTMENTS */
    .hero-banner {
        padding: 90px 0 60px !important;
    }
    
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-image-grid {
        display: none;
    }
    
    .section-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* MOBILE TIMELINE FIX - ICONS OUTSIDE BOX */
    .journey-section::before {
        left: 27px;
    }
    
    .timeline-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        border: 3px solid white !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 75px !important;
        margin-right: 0;
        padding: 20px 15px;
        text-align: left;
    }
    
    .timeline-item:nth-child(odd) .timeline-icon,
    .timeline-item:nth-child(even) .timeline-icon {
        left: -45px !important;
        right: auto !important;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .service-box {
        padding: 30px 20px;
    }
    
    .service-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .promise-card {
        padding: 30px 20px;
    }
    
    .promise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-highlight {
        padding: 40px 30px;
        transform: none !important;
        margin: 0 10px;
    }
    
    .price-value {
        font-size: 5rem;
    }
    
    .gallery-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .float-text {
        display: none;
    }
    
    .float-btn {
        padding: 12px;
        border-radius: 50%;
        width: 55px;
        height: 55px;
        justify-content: center;
    }
}

/* ====================================
   EXTRA SMALL DEVICES
   ==================================== */
@media (max-width: 576px) {
    .navbar {
        padding: 4px 0 !important;
    }
    
    .nav-logo {
        height: 60px !important;
    }
    
    .navbar-brand {
        padding: 2px 0;
    }
    
    .navbar-toggler {
        padding: 3px 5px;
        font-size: 0.85rem;
        border-width: 1px;
    }
    
    .hero-banner {
        padding: 80px 0 50px !important;
    }
}
