@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');

/* --- Global Styles --- */
:root {
    --primary-bg: #f8f5f0; /* Soft Ivory */
    --accent-1: #d4c4b2;   /* Warm Sandy Beige */
    --accent-2: #c07a4a;   /* Deep Terracotta */
    --secondary-text: #4a4a4a; /* Dark Charcoal Grey */
    --subtle-accent: #a0d2db; /* Muted Seafoam Green (for accents) */
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--secondary-text);
    background-color: var(--primary-bg);
    line-height: 1.6;
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8em;
    color: #FFB000;
}

h2,#h{
      font-family: "Archivo Black", sans-serif;

}

h1 { font-size: 3em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.7em; }
h4 { font-size: 1.2em; }

p { margin-bottom: 1em; }

a {
    text-decoration: none;
    color: var(--accent-2);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-1);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin-top: 15px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-2);
    color: var(--white);
    border: 2px solid var(--accent-2);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--accent-2);
    border-color: var(--accent-2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-1);
    border: 2px solid var(--accent-1);
}

.btn-secondary:hover {
    background-color: var(--accent-1);
    color: var(--primary-bg);
    border-color: var(--accent-1);
}

.btn-accent {
     background-color: #004225;
     color: white;
     border: 2px solid var(--accent-1);
}
.btn-accent:hover {
    background-color: var(--secondary-text);
    color: var(--white);
    border-color: var(--secondary-text);
}

.section-padding {
    padding: 80px 0;
}

/* --- Header --- */
header {
    background-color: #FFB000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: black;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--accent-2);
}

.header-cta .btn-primary {
    margin-left: 20px;
    padding: 10px 20px;
    font-size: 0.9em;
}

.hamburger-menu {
    display: none; /* Hidden by default, shown on mobile */
    font-size: 1.8em;
    cursor: pointer;
    color: var(--accent-1);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden; /* Crucial for video background */
    color: var(--white);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-size: cover; /* Ensure video covers the whole area */
}

.hero-content {
    position: relative; /* To ensure it sits above the video */
    z-index: 2;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    padding: 40px;
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 4em; /* Larger for hero */
    color: var(--white);
    margin-bottom: 15px;
}

.hero-content h2 {
    font-size: 2.5em;
    color: var(--accent-1);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: var(--white);
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* --- About Section --- */
.about-section {
    padding: 80px 0;
    background-color: var(--white); /* Slightly different for contrast */
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text { flex: 1; }
.about-image { flex: 1; }

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text h2 {
    color: #c04a4a; /* Highlight section title */
}

/* --- Services Section --- */
.services-section {
    padding: 80px 0;
    text-align: center;
}

.services-section h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* Ensures image covers the area */
}

.service-info {
    padding: 25px;
    flex-grow: 1; /* Allows info to take remaining space */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes read more down */
}

.service-info h3 {
    font-size: 1.4em;
    color: #004225;
    margin-top: 0;
}

.service-info p {
    font-size: 0.95em;
    flex-grow: 1; /* Pushes button to bottom */
    margin-bottom: 15px;
}

.service-info .read-more {
    font-weight: 600;
    color: #5e3200;
    display: inline-block; /* For hover effect */
}

.all-services-link {
    margin-top: 40px;
}

/* --- Bridal Section --- */
.bridal-section {
    padding: 80px 0;
    background-color: var(--accent-1); /* Use accent color for background */
    color: var(--secondary-text); /* Ensure text is readable */
}

.bridal-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.bridal-image { flex: 1; }
.bridal-text { flex: 1; }

.bridal-text h2 {
    color: black;
    font-size: 2em;
}

.bridal-text h3 {
    color: var(--secondary-text);
    font-size: 1.6em;
}

.bridal-text p {
    color: var(--secondary-text);
    opacity: 0.9;
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 80px 0;
    text-align: center;
}

.gallery-filter {
    margin-bottom: 30px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--accent-1);
    color: var(--accent-1);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-1);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px; /* Fixed height */
    object-fit: cover;
    display: block; /* Remove bottom space */
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.why-item {
    padding: 25px;
    border-radius: 10px;
    background-color: var(--primary-bg); /* Use primary background for items */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.why-item i {
    font-size: 2.5em;
    color: var(--accent-2);
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #4d3922;
}

/* --- Contact Section --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--primary-bg); /* Using primary bg again for consistency */
}

.contact-wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap; /* For responsiveness */
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px; /* Minimum width for responsiveness */
}

.contact-info h3 {
    color: var(--accent-2);
    margin-top: 20px;
}

.contact-info p {
    font-size: 1em;
    opacity: 0.9;
}

.contact-info a {
    color: var(--secondary-text);
    font-weight: 600;
}
.contact-info a:hover {
    color: var(--accent-2);
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    font-size: 1.8em;
    margin-right: 20px;
    color: var(--accent-1);
}

.social-links a:hover {
    color: var(--accent-2);
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--accent-2);
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: calc(100% - 20px); /* Adjust for padding */
    padding: 12px 10px;
    margin-bottom: 15px;
    border: 1px solid var(--accent-1);
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--white);
    color: var(--secondary-text);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
}

/* --- Footer --- */
footer {
    background-color:#004225;
    color: var(--primary-bg);
    padding: 50px 0 20px 0;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-nav, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-nav h4, .footer-contact h4, .footer-social h4 {
    color: var(--accent-1);
    font-size: 1.3em;
    margin-bottom: 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-contact p {
    color: var(--primary-bg);
    opacity: 0.9;
}

.footer-nav ul li a:hover,
.footer-contact p a:hover {
    color: var(--accent-1);
    opacity: 1;
}

.footer-social a {
    color: var(--primary-bg);
    font-size: 1.6em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--accent-1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85em;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; /* WhatsApp green */
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8em; }
    h2 { font-size: 2em; }
    h3 { font-size: 1.5em; }

    .hero-content h1 { font-size: 3.5em; }
    .hero-content h2 { font-size: 2em; }

    .about-content, .bridal-content {
        flex-direction: column;
        text-align: center;
    }
    .about-image, .bridal-image {
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* Stack cards */
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .header-cta .btn-primary {
        display: none; /* Hide button on mobile, show hamburger */
    }
    .hamburger-menu {
        display: block;
    }
    nav ul {
        display: none; /* Hide nav by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        background-color: var(--primary-bg);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 20px 0;
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-logo img { margin: 0 auto 15px auto; }
    .footer-social a { margin: 0 10px; }
}

@media (max-width: 768px) {
    .hero-section { height: 70vh; }
    .hero-content h1 { font-size: 3em; }
    .hero-content h2 { font-size: 1.8em; }
    .hero-content p { font-size: 1em; }
    .hero-buttons .btn { margin: 5px 10px; display: block; width: calc(100% - 20px); }
}

@media (max-width: 480px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.6em; }
    h3 { font-size: 1.3em; }

    .hero-content h1 { font-size: 2.5em; }
    .hero-content h2 { font-size: 1.5em; }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}
     

    .hero-slider {position: relative;
        height: 90vh;
        min-height: 500px;
        max-height: 900px;
        overflow: hidden;
        touch-action: pan-y;
    }
    
    .hero-slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        display: flex;
        align-items: center;
    }
    
    .hero-slide.active {
        opacity: 1;
        z-index: 1;
    }
    
    .slide-media {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .slide-media video,
    .slide-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .slide-content {
        position: relative;
        z-index: 2;
        color: white;
        text-align: center;
        width: 100%;
        padding: 2rem;
        background: rgba(0,0,0,0.4);
    }
    
    .slide-content .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .slide-content h1 {
        font-size: 3rem;
        margin-bottom: 0.5rem;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        line-height: 1.2;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
        font-weight: 400;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 2rem;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    }
    
    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .btn {
        display: inline-block;
        padding: 0.8rem 1.8rem;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background:#004225; /* Gold color */
        color: #fffbfb;
    }
    
    .btn-primary:hover {
        background: #e8c352;
        transform: translateY(-2px);
    }
    
    .btn-secondary {
background-color: #a37334;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary:hover {
        background: grey;
        transform: translateY(-2px);
    }
  #start{
    text-align: start;
  }
    .slider-controls {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .slider-prev, .slider-next {
        background: rgba(255,255,255,0.3);
        border: none;
        color: white;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-prev:hover, .slider-next:hover {
        background: rgba(255,255,255,0.7);
        color: #333;
    }
    
    .slider-dots {
        display: flex;
        gap: 0.8rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.5);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .dot.active {
        background: white;
        transform: scale(1.2);
    }
    
    /* Mobile Responsive Styles */
    @media (max-width: 992px) {
        .hero-slider {
            height: 80vh;
            min-height: 400px;
        }
        
        .slide-content h1 {
            font-size: 2.5rem;
        }
        
        .slide-content h2 {
            font-size: 1.5rem;
        }
        
        .slide-content p {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 768px) {
        .hero-slider {
            height: 70vh;
        }
        
        .slide-content {
            padding: 1.5rem;
        }
        
        .slide-content h1 {
            font-size: 2rem;
        }
        
        .slide-content h2 {
            font-size: 1.3rem;
        }
        
        .slide-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .btn {
            padding: 0.6rem 1.5rem;
            font-size: 0.9rem;
        }
        
        .slider-controls {
            bottom: 1rem;
        }
    }
    
    @media (max-width: 576px) {
        .hero-slider {
            height: 60vh;
            min-height: 350px;
        }
        
        .slide-content {
            padding: 1rem;
        }
        
        .slide-content h1 {
            font-size: 1.8rem;
            margin-bottom: 0.3rem;
        }
        
        .slide-content h2 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .slide-content p {
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .hero-buttons {
            gap: 0.5rem;
        }
        
        .btn {
            padding: 0.5rem 1.2rem;
            font-size: 0.8rem;
        }
        
        .slider-prev, .slider-next {
            width: 2.5rem;
            height: 2.5rem;
            font-size: 1.2rem;
        }
    }
    
    /* Landscape mobile optimization */
    @media (max-height: 500px) and (orientation: landscape) {
        .hero-slider {
            height: 100vh;
            min-height: auto;
        }
        
        .slide-content {
            padding-top: 1rem;
            padding-bottom: 1rem;
        }
        
        .slide-content h1 {
            font-size: 1.5rem;
        }
        
        .slide-content h2 {
            font-size: 1.1rem;
        }
        
        .slide-content p {
            font-size: 0.8rem;
            margin-bottom: 0.5rem;
        }
        
        .hero-buttons {
            margin-top: 0.5rem;
        }
    }

     /* Logo Styles */
        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .logo-symbol {
            position: relative;
            width: 50px;
            height: 30px;
            margin-right: 12px;
        }
        
        .infinity-loop {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid #d4af37;
            border-radius: 50%;
            border-color: #d4af37 transparent #d4af37 #d4af37;
            transform: rotate(-45deg);
            animation: aura-glow 4s infinite alternate;
        }
        
        .infinity-loop:before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            width: 100%;
            height: 100%;
            border: 3px solid rgba(212, 175, 55, 0.4);
            border-radius: 50%;
            border-color: transparent rgba(212, 175, 55, 0.4) transparent transparent;
            transform: rotate(0deg);
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            font-weight: 700;
            color: #333;
            line-height: 1;
            margin-bottom: 2px;
            background: linear-gradient(to right, red, #7a0404);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .logo-sub {
            font-family: 'Open Sans', sans-serif;
            font-size: 12px;
            color: #fff1f1;
            letter-spacing: 2px;
            text-transform: uppercase;
        }
        
        /* Animation */
        @keyframes aura-glow {
            0% { box-shadow: 0 0 5px red; }
            100% { box-shadow: 0 0 15px rgba(9, 7, 1, 0.6); }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .logo-main {
                font-size: 20px;
            }
            .logo-sub {
                font-size: 10px;
            }
            .logo-symbol {
                width: 40px;
                height: 24px;
                margin-right: 8px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-main {
                font-size: 18px;
            }
            .logo-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .logo-symbol {
                margin-right: 0;
                margin-bottom: 5px;
            }
        }
         /* Contact Section Styles */
    .contact-section {
        padding: 60px 0;
        background-color: #fff9f9;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 2.2rem;
        color: #333;
    }
    
    .contact-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .contact-info, .contact-form {
        flex: 1;
        min-width: 300px;
    }
    
    .contact-info h3, .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #d4af37;
    }
    
    .contact-info p {
        margin-bottom: 15px;
        line-height: 1.6;
        display: flex;
        align-items: flex-start;
    }
    
    .contact-info i {
        margin-right: 10px;
        color: #d4af37;
        min-width: 20px;
    }
    
    .contact-info a {
        color: #555;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .contact-info a:hover {
        color: #d4af37;
    }
    
    .social-links {
        margin: 25px 0;
        display: flex;
        gap: 15px;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #f5f5f5;
        color: #555;
        transition: all 0.3s;
    }
    
    .social-links a:hover {
        background-color: #d4af37;
        color: white;
        transform: translateY(-3px);
    }
    
    .map-container {
        margin-top: 20px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .map-container iframe {
        width: 100%;
        height: 250px;
        border: none;
    }
    
    .contact-form {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #d4af37;
        outline: none;
    }
    
    .contact-form textarea {
        resize: vertical;
        min-height: 120px;
    }
    
    .contact-form button {
        width: 100%;
        padding: 12px;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .contact-wrapper {
            flex-direction: column;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .contact-info, .contact-form {
            min-width: 100%;
        }
        
        .map-container iframe {
            height: 200px;
        }
        #left{
            text-align: left;
        }
    }
    
    @media (max-width: 480px) {
        .section-title {
            font-size: 1.5rem;
        }
        
        .contact-info h3, .contact-form h3 {
            font-size: 1.3rem;
        }
        
        .contact-form {
            padding: 20px;
        }
    }
    .tp-breadcrumb-list>li{
        list-style: none;
    }
    
    .footer-bottom{
        display: flex;
    }
        @media (max-width: 768px) {
 .footer-bottom{
            flex-direction: column;
    }}
    /* Branches Section Styles */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.branch-card {
    transition: transform 0.3s;
}

.branch-card:hover {
    transform: translateY(-10px);
}

.branch-card:hover .branch-image img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-image {
        height: 250px !important;
    }
}