* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #CCC;
    color: #1e1e1e;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
    /*width:95%;*/
    /*margin-left:2.5%;*/
}

:root {
    --peach: #fad4c0;
    --beige: #f5e6d3;
    --yellow: #f8e7a0;
    --sage: #c1d5ba;
    --black: #2a2a2a;
    --soft-neutral: #f8f7f4;
    --card-bg: #ffffff;
    --shadow: 0 20px 35px -8px rgba(0,0,0,0.05), 0 10px 15px -6px rgba(0,0,0,0.02);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
     background: linear-gradient(120deg,#ff0000,#fff,darkmagenta,#fff,saddlebrown,#fff,#0033ff,#fff,indigo,#fff,#ff0000);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip:text;
    animation: animate 10s linear infinite;
    

}

h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.brush-accent {
    position: relative;
    z-index: 2;
    margin-bottom:10px;
    padding-bottom:10px;
    
}

.brush-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 70%;
    height: 12px;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.35;
}

.section-brush {
    position: relative;
    overflow: hidden;
}

.section-brush::before {
    content: '';
    position: absolute;
    top: 20px;
    right: -30px;
    width: 250px;
    height: 80px;
    background: linear-gradient(120deg, transparent 30%, var(--peach) 50%, var(--sage) 70%, transparent 90%);
    transform: rotate(12deg);
    border-radius: 100px;
    opacity: 0.2;
    pointer-events: none;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1.5px solid transparent;
    background: var(--black);
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    text-align: center;
}

.btn-outline {
    background: transparent;
    border-color: gold;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -10px rgba(0,0,0,0.15);
}

.btn-outline:hover {
    background: var(--black);
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    flex-wrap: wrap;
   
    
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: clamp(55px, 10vw, 75px);
    width: auto;
    border-radius: 8px;
}

.logo-text h3 {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.logo-text .headPaint{
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: #5f5f5f;
}
.logo-text .headColor{
     color:#C28840;
 }

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: #2e2e2e;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--black);
    border-bottom: 1px solid gold;
}

.hero-carousel-section {
    width: 100%;
    height: clamp(300px, 80vh, 500px);
    position: relative;
    margin: 1px 0 30px;
    overflow: hidden;
    border-radius: none;
    box-shadow: var(--shadow);
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s linear;
}

.carousel-slide.active img {
    transform: scale(1);
}

.hero {
    padding: 20px 0 60px;
    background: linear-gradient(145deg,#000,#000,#0c1747,#073650,#043c47,#000);
    position: relative;
    height:50vh;
    align-item:center;
    border-radius:14px;
}

.hero-bg-texture {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 40%, var(--peach) 0.5px, transparent 1px),
                      radial-gradient(circle at 80% 70%, var(--sage) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
    pointer-events: none;
}

.hero h1 {
    margin-bottom: 20px;
    
}

.hero-sub {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #ffff;
    margin-bottom: 35px;
    font-weight: 380;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-carousel-container {
    height: clamp(280px, 80vh, 400px);
    border-radius: 40px 20px 40px 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.service-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    border-color: var(--sage);
}

.service-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--black);
    font-weight: 700;
}

.service-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    color: var(--sage);
    gap: 12px;
}

.filter-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--black);
    color: white;
    border-color: var(--black);
}

.filter-btn:hover:not(.active) {
    border-color: var(--sage);
    color: var(--black);
}

.service-card.hidden {
    display: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-item i {
    font-size: 1.5rem;
    color: var(--sage);
    background: #f0f7ee;
    padding: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.why-item p {
    color: #5a5a5a;
    font-size: 0.9rem;
}

.bg-soft {
    background-color: var(--soft-neutral);
    padding: 80px 0;
    position: relative;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: white;
    padding: 2rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
    border-left: 6px solid var(--sage);
}

.vm-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.portfolio-slider {
    width: 100%;
    height: clamp(280px, 45vh, 450px);
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-group {
    margin-bottom: 18px;
}

input, textarea {
    width: 100%;
    padding: 16px 20px;
    border-radius: 40px;
    border: 1px solid #e5e5e5;
    font-family: inherit;
    font-size: 16px;
    background: white;
}

textarea {
    border-radius: 25px;
    resize: vertical;
}

.contact-info {
    background: var(--soft-neutral);
    padding: 2rem;
    border-radius: 40px;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 12px;
    color: var(--sage);
    width: 20px;
}

.business-hours {
    margin-top: 20px;
    border-top: 1px dashed var(--sage);
    padding-top: 20px;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.call-btn {
    background: var(--black);
    color: white;
    padding: 12px 20px;
    border-radius: 60px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 25px 0;
}

.floating-contact {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}

.float-whatsapp { background-color: #25D366; }
.float-call { background-color: var(--black); }

.footer {
    background: var(--black);
    color: #dddbd4;
    padding: 50px 0 30px;
    border-radius: 40px 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer a {
    color: #dddbd4;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover { color: white; }

.footer-logo img {
    height: 70px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.5rem;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 1.2rem;
    transition: color 0.2s;
    cursor: pointer;
}

.social-icons i:hover { color: white; }

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #3e3e3e;
    font-size: 0.85rem;
}

/* Trust Badges */
.trust-badges {
    padding: 30px 0;
    background: linear-gradient(90deg, #f8f7f4 0%, #ffffff 100%);
    border-radius: 60px;
    margin: 43px 0;
    height:20vh;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
    justify-items: center;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-weight: 600;
}

.badge-item i {
    font-size: 2rem;
    color: var(--sage);
}

/* Process Grid */
/*#process{*/
/*    background-color:#fff;*/
/*}*/
/*.processCardFade-in{*/
/*    display: grid;*/
/*    gap: 30px;*/
/*    text-align: center;*/
/*    padding: 30px;*/
/*    border-radius: 40px;*/
/*    transition: transform 0.3s ease;*/
/*    position: relative;*/
/*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);*/
/*    background-color: #eeeeee;*/
/*    margin: 40px 0;*/
    
/*}*/

/*.process-card {*/
   
/*    position: relative;*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3,1fr);*/
/*    width: 65%;*/
/*}*/
/*.process-grid .middle-card {*/
/*    background-color: #d1d6ca;*/
/*    grid-column-start: 2;*/
/*    grid-row-start: 1;*/
/*    grid-row-end: 4;*/
/*    height: 70vh;*/
/*    border-radius: 20px;*/
/*    width: 100%;*/
/*}*/

/*.process-card:hover {*/
/*    transform: translateY(-10px);*/
/*}*/

/*.process-card::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: -10px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: var(--sage);*/
/*    border-radius: 50%;*/
/*    opacity: 0.2;*/
/*}*/

/*.process-icon {*/
/*    font-size: 2rem;*/
/*    color: var(--sage);*/
/*    margin-bottom: 20px;*/
/*}*/

/*.process-card h3 {*/
/*    margin-bottom: 15px;*/
/*    font-size: 1.3rem;*/
/*}*/

/*.process-card p {*/
/*    color: #666;*/
/*    font-size: 0.95rem;*/
/*    line-height: 1.6;*/
/*}*/

/* Container styling to center the entire section on the screen */
.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff; /* Light page background */
    margin-top:17px;
}

/* The Grid Container */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
    grid-template-rows: repeat(2, 1fr);    /* 2 equal rows */
    gap: 27px 0;                             /* Space between cards */
    width: 90%;                            /* Overall width */
    max-width: 1200px;                      /* Max width for large screens */
    padding: 40px;
}

/* Base style for ALL cards */
.card {
    border-radius: 20px;                   /* Rounded corners */
    display: flex;
    flex-direction:column;
    justify-content: center;               /* Center text horizontally */
    align-items: center;                   /* Center text vertically */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5); /* Subtle shadow */
}

/* Style for the outer (grey) cards */
.processCardFade-in {
    background-color: #f1f1f1;            /* Light grey background */
}

/* Specific position for each outer card */
.process-grid .most-outstanding-events {
    grid-column: 1;                        /* Column 1 */
    grid-row: 1;     
    margin-right: -30px; 
    z-index: 1;
    height: 33vh;
    margin-top: 75px;
    
}

.process-grid .best-places{
    grid-column: 1;                        /* Column 1 */
    grid-row: 2;  
    z-index: 4; 
    z-index: 1;
    margin-right: -30px;  
    height: 33vh;
    margin-top: 25px;
}

.process-grid .our-service {
    grid-column: 3;                        /* Column 3 */
    grid-row: 1;     
    z-index: 1;
    margin-left: -30px; 
    height: 33vh;
    margin-top: 75px;
}

.process-grid .gallery {
    grid-column: 3;                        /* Column 3 */
    grid-row: 2;  
    z-index: 1;
    margin-left: -30px;  
    height: 33vh;
    margin-top: 25px;
}


/* Style for the middle (sage green) card */
.process-grid .middle-card {
    grid-column: 2;                        /* Column 2 */
    grid-row: 1 / 3;                      /* Spans both Row 1 and Row 2 */
    background-color: #d1d6ca;             /* Sage green background */
    flex-direction: column; 
    height:95vh;

}

/* Text styling */
.card p {
    color: #666;                           /* Dark text for outer cards */
    font-size: 0.95rem;
    font-weight: 300;
}

.middle-card-content h2 {
    color:  rgb(58, 29, 9);
    margin-bottom: 20px;
    font-size: 1.7rem;
    margin-left:12px;
}

.middle-card-content p {
    color:#000;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight:500;
}

/* Case Studies */
#case-studies .container {
    background-color:darkgrey;
    margin-top:30px;
    /*height:140vh;*/
    
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.case-study-card {
    background: white;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.case-study-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1);
}

.case-study-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sage);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
}

.case-study-content {
    padding: 30px;
}

.case-study-content h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.case-study-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case-study-stats span {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-study-stats strong {
    font-size: 1.2rem;
    color: var(--sage);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 40px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--sage);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: #888;
    font-size: 0.85rem;
}

.video-testimonial {
    position: relative;
    cursor: pointer;
}

.video-testimonial::after {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(193, 213, 186, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-testimonial:hover::after {
    background: var(--sage);
    transform: translate(-50%, -50%) scale(1.1);
}

/* FAQ */
.faq-grid {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f7f4;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--sage);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
}

/* Warranty Section */
.warranty-section {
    background: linear-gradient(145deg, var(--soft-neutral) 0%, #fff 100%);
    padding: 60px 0;
    border-radius: 60px;
    margin: 40px 0;
}

.warranty-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.warranty-card {
    background: white;
    padding: 40px 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid #f1f1f1;
}

.warranty-card i {
    font-size: 3rem;
    color: var(--sage);
    margin-bottom: 20px;
}

.warranty-card h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 10px;
}

.warranty-card p {
    color: #666;
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(193, 213, 186, 0.3);
    border-radius: 50%;
    border-top-color: var(--sage);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Messages */
.form-error {
    background: #ffebee;
    color: #c62828;
    padding: 12px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #ffcdd2;
}

.form-success {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 12px 20px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border: 1px solid #a5d6a7;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--black);
    color: white;
    padding: 8px;
    z-index: 100;
    text-decoration: none;
}

.skip-link:focus {
    top: 0;
}

:focus {
    outline: 3px solid var(--sage);
    outline-offset: 2px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Print Styles */
@media print {
    .floating-contact,
    .cookie-consent,
    .live-chat-btn,
    .chat-widget,
    .newsletter-section,
    .footer {
        display: none !important;
    }
}

/* Responsive Design */
@media (max-width: 900px) {
    .navbar { flex-direction: column; gap: 15px; text-align: center; }
    .nav-links { justify-content: center; width: 100%; gap: 1rem; flex-wrap: wrap; }
    .two-col, .vm-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; }
    .hero-ctas .btn { width: 100%; }
    .logo { justify-content: center; }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    
    /* 1. HERO SECTION FIXES */
    .hero {
        /* IMPORTANT: Remove fixed height so content can expand vertically */
        height: auto !important; 
        padding: 60px 0; /* Adjust padding for better spacing on mobile */
        display: block; /* Ensure stacked layout */
    }

    .hero .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-ctas {
        justify-content: center; /* Center buttons */
        width: 100%;
    }

    /* 2. TRUST BADGES SECTION FIXES */
    .trust-badges {
        /* IMPORTANT: Remove fixed height */
        height: auto !important; 
        padding: 40px 0;
        border-radius: 30px; /* Sightly smaller radius for mobile */
    }

    .badges-grid {
        /* Switch from auto-fit to a distinct 2-column grid on tablets */
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 20px;
    }

    /* 3. PROCESS GRID FIXES (Complex Overrides) */
    .main-container {
        /* IMPORTANT: Remove min-height restraint */
        min-height: auto !important; 
        height: auto !important;
        padding: 40px 0;
    }

    .process-grid {
        /* MAJOR CHANGE: Collapse to 1 column */
        grid-template-columns: 1fr !important; 
        /* MAJOR CHANGE: Release all rows to be auto-height */
        grid-template-rows: auto !important; 
        gap: 20px !important;
        padding: 20px;
        width: 100%;
    }

    /* Base style override for ALL cards in mobile process flow */
    .process-grid .card {
        height: auto !important; /* Let content dictate height */
        margin: 0 !important;   /* Reset all negative margins/offsets */
        grid-column: 1 !important; /* All cards in one column */
        position: relative !important;
        z-index: 1 !important; /* Ensure correct stacking */
    }

    /* Order the cards correctly in the vertical stack */
    
    /* 1st in stack: The Heading (formerly middle) Card */
    .process-grid .middle-card {
        grid-row: 1 !important;
        background-color: #d1d6ca; /* Keep color */
        padding: 30px;
        border-radius: 20px;
    }

    /* 2nd: Events */
    .process-grid .most-outstanding-events { grid-row: 2 !important; }
    
    /* 3rd: Places */
    .process-grid .best-places { grid-row: 3 !important; }
    
    /* 4th: Services */
    .process-grid .our-service { grid-row: 4 !important; }
    
    /* 5th: Gallery */
    .process-grid .gallery { grid-row: 5 !important; }

    /* Text adjustments for process cards on mobile */
    .card p {
        font-size: 1.1rem !important; /* Slightly larger text for mobile readability */
        font-weight: 500 !important;
        color: #333 !important; /* Darker text for visibility */
        text-align: center;
    }
    
    .middle-card-content h2 {
        text-align: center;
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-carousel-section { border-radius: 30px 10px 30px 10px; }
    .footer-grid { text-align: center; }
    .footer-logo img { align-self: center; }
    .social-icons { justify-content: center; }
    
    /* 1. HERO TEXT ADAPTATION */
    .hero h1 {
        /* Let clamp work, but provide a slightly smaller default range for very narrow screens */
        font-size: clamp(2.2rem, 10vw, 3.5rem) !important; 
    }

    /* 2. TRUST BADGES COLLAPSE */
    .badges-grid {
        /* IMPORTANT: Collapse to 1 column */
        grid-template-columns: 1fr !important; 
        justify-items: start; /* Align badges to the left on narrow screens */
        padding-left: 20px;
    }
    
    .badge-item {
        justify-content: start;
        text-align: left;
    }
    .contact-info { padding: 1.5rem; }
    .contact-actions .btn, .contact-actions a { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .badges-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .warranty-cards { grid-template-columns: 1fr; }
    
}