/* 
    Angel Events Custom CSS 
    Color Palette:
    Primary Brown: #6F4E37
    Dark Brown: #4B3621
    Gold Accent: #C9A227
    Cream: #F8F5F0
    White: #FFFFFF
    Dark Text: #2C2C2C
*/

:root {
    --primary-brown: #6F4E37;
    --dark-brown: #4B3621;
    --gold: #C9A227;
    --gold-hover: #b08d22;
    --cream: #F8F5F0;
    --white: #FFFFFF;
    --dark-text: #2C2C2C;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --transition: all 0.4s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6, .logo-text, .section-title {
    font-family: var(--font-heading);
}

.bg-light {
    background-color: #faf8f5 !important;
    background-image: 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='%236f4e37' fill-opacity='0.04'%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") !important;
}

.bg-dark {
    background-color: var(--dark-text) !important;
}

.bg-dark-brown {
    background-color: var(--dark-brown) !important;
}

.text-gold {
    color: var(--gold) !important;
}

.text-primary-brown {
    color: var(--primary-brown) !important;
}

.tracking-wide {
    letter-spacing: 2px;
}

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

.italic {
    font-style: italic;
}

/* Typography Overrides */
.display-3 {
    line-height: 1.2;
}

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 30px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.btn-gold:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: var(--white);
}

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

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

.btn-primary-brown {
    background-color: var(--primary-brown);
    color: var(--white);
    border: 2px solid var(--primary-brown);
}

.btn-primary-brown:hover {
    background-color: var(--dark-brown);
    border-color: var(--dark-brown);
    color: var(--white);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-text);
}

/* Navbar */
.navbar {
    padding: 10px 0;
    transition: var(--transition);
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 0px 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.navbar-brand:hover, .navbar-brand:focus {
    color: var(--white);
}

.nav-logo {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    background: transparent;
    transition: var(--transition);
}

.offcanvas-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.footer-logo {
    max-height: 150px;
    width: auto;
    object-fit: contain;
    background: transparent;
}

.navbar.scrolled .navbar-brand {
    color: var(--dark-brown);
}

.navbar.scrolled .navbar-brand:hover, .navbar.scrolled .navbar-brand:focus {
    color: var(--dark-brown);
}

.nav-link {
    font-weight: 600;
    color: #ffffff !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-link {
    color: var(--dark-text) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.5rem;
}

.navbar.scrolled .navbar-toggler {
    color: var(--dark-text);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Offcanvas for Mobile */
@media (max-width: 991px) {
    .offcanvas {
        background-color: var(--white);
    }

    .offcanvas .nav-link {
        color: var(--dark-text) !important;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .offcanvas .dropdown-menu {
        background-color: #faf8f5;
        box-shadow: none !important;
        border-radius: 8px;
        padding: 10px;
    }

    .offcanvas .dropdown-item {
        color: var(--dark-text);
        padding: 8px 15px;
        border-bottom: 1px solid rgba(0,0,0,0.02);
    }

    .offcanvas .dropdown-item:last-child {
        border-bottom: none;
    }

    .offcanvas .nav-link::after {
        display: none;
    }

    .offcanvas .nav-link:hover, .offcanvas .nav-link.active {
        color: var(--gold) !important;
        padding-left: 10px;
    }
}

/* Dropdown Hover */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

.dropdown-menu {
    border: none;
    border-radius: 0 0 10px 10px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background-color: var(--primary-brown);
    color: var(--white) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(75, 54, 33, 0.8), rgba(44, 44, 44, 0.6));
}

/* About Section */
.about-img-wrap {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--gold);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.4);
    border: 8px solid var(--white);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(201, 162, 39, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0); }
}

.counters h3 {
    font-size: 2.5rem;
}

/* Why Choose Us Feature Cards */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-bottom-color: var(--gold);
}

.feature-card .icon-wrap {
    width: 80px;
    height: 80px;
    background-color: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrap {
    background-color: var(--gold);
    color: var(--white);
}

/* Services */
.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-img {
    position: relative;
    height: 250px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    clip-path: inset(0 0 0 0);
}

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

.service-icon {
    position: absolute;
    bottom: -25px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(201, 162, 39, 0.4);
    z-index: 10;
}

.service-content {
    padding: 40px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h4 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover .service-content h4 {
    color: var(--primary-brown);
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary-brown);
    gap: 15px;
}

.mini-service {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.mini-service:hover {
    transform: translateX(5px);
    border-left-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 100%;
    cursor: pointer;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(111, 78, 55, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
    transform: scale(0);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Team */
.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding-bottom: 25px;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}

/* Clients */
.client-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.client-slider::before, .client-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.client-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--dark-brown), transparent);
}

.client-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--dark-brown), transparent);
}

.client-track {
    display: inline-flex;
    animation: scrollClients 20s linear infinite;
}

.client-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.client-logo img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.client-logo h3 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--dark-text);
}

@keyframes scrollClients {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials */
.testimonial-card {
    background: #ffffff !important;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(201, 162, 39, 0.2);
    margin-bottom: 20px;
}

.client-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    opacity: 1;
}

.carousel-control-prev { left: -25px; }
.carousel-control-next { right: -25px; }

/* CTA Section */
.cta-section {
    background: var(--dark-brown);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/gallery_1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.2;
}

/* Contact */
.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.form-control, .form-select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
}

/* Footer */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 1000;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-wa 2s infinite;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
    color: white;
    transform: scale(1.1);
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

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

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

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

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

/* Responsive Overrides */
@media (max-width: 991px) {
    .navbar {
        background-color: var(--white);
        padding: 15px 0 !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    .navbar.scrolled {
        padding: 15px 0 !important;
    }
    .nav-logo {
        max-height: 80px !important;
    }
    .navbar-brand {
        color: var(--dark-brown);
    }
    .navbar-toggler {
        color: var(--dark-text);
    }
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
        bottom: 10px !important;
        right: 10px !important;
    }
    .experience-badge h3 {
        font-size: 1.5rem;
    }
    .experience-badge p {
        font-size: 0.8rem;
    }
    .hero-section {
        height: auto;
        min-height: 550px;
        padding: 120px 0 80px;
    }
    .hero-section h1 {
        font-size: 2.8rem !important;
        line-height: 1.3 !important;
    }
    .hero-section .lead {
        font-size: 1.1rem !important;
        margin-bottom: 35px !important;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    .testimonial-card {
        padding: 30px 20px;
    }
    .display-3 {
        font-size: 2.5rem;
    }
    .counters h3 {
        font-size: 2rem;
    }
    .hero-section {
        min-height: 500px;
        padding: 120px 0 60px;
    }
    .hero-section h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
    }
    .hero-section .lead {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.8rem !important;
    }
    .hero-section .lead {
        font-size: 0.95rem !important;
    }
}

@media (min-width: 992px) {
    .navbar-nav .dropdown-toggle::after {
        display: none !important;
    }
}

/* Page Header for Inner Pages */
.page-header {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(75, 54, 33, 0.9), rgba(44, 44, 44, 0.7));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Process Timeline Styling */
.process-step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    position: relative;
    height: 100%;
    border-top: 4px solid var(--gold);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-top-color: var(--primary-brown);
}

.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(201, 162, 39, 0.15);
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
}

.process-step h4 {
    margin-bottom: 15px;
    color: var(--dark-brown);
}

@media (max-width: 991px) {
    .page-header {
        height: auto;
        padding: 130px 0 60px !important;
    }
}

/* Map container styling */
.map-wrap {
    height: 450px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Gallery Inner Page Styles */
.gallery-item {
    aspect-ratio: 4 / 3;
}

/* Service Inner Pages / Sidebar Styles */
.service-sidebar {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}
.service-sidebar-title {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
    margin-bottom: 0;
}
.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
    font-size: 0.95rem;
}
.service-link:last-child {
    border-bottom: none;
}
.service-link i {
    font-size: 0.8rem;
    color: #b0b0b0;
    transition: var(--transition);
}
.service-link:hover {
    background-color: rgba(201, 162, 39, 0.05);
    color: var(--gold);
    padding-left: 25px;
}
.service-link:hover i {
    color: var(--gold);
    transform: translateX(5px);
}
.service-link.active {
    background-color: var(--gold);
    color: var(--white);
}
.service-link.active i {
    color: var(--white);
}

/* Sidebar Help Box */
.sidebar-help {
    background-color: var(--dark-brown);
    color: var(--white);
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.sidebar-help::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    z-index: 1;
}
.sidebar-help-content {
    position: relative;
    z-index: 2;
}
.sidebar-help h4 {
    font-weight: 700;
    margin-bottom: 15px;
}
.sidebar-help p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Service Details Styles */
.service-main-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 35px;
    height: 400px;
}
.service-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.offer-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    border-left: 4px solid var(--gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: var(--transition);
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.offer-card i {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}
.offer-card h5 {
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
}
.offer-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .service-main-img {
        height: 300px;
    }
}
