:root {
    --primary: #8B5E3C;
    --primary-light: #A67B5B;
    --secondary: #D9B382;
    --accent: #4A3728;
    --bg-light: #FDFBF7;
    --text-dark: #2C1E16;
    --text-muted: #5D4D42;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.9);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(74, 55, 40, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.text-center {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    line-height: 1.2;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: #fff;
}

header.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

.logo span {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    z-index: 1001;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    color: var(--accent);
    padding: 0.5rem 0;
}

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

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

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

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

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

.btn-nav {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Page Banners for Internal Pages */
.page-banner {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    margin-bottom: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(44, 30, 22, 0.7), rgba(44, 30, 22, 0.7));
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-top: 1rem;
    animation: fadeInUp 1s ease forwards;
}

.page-banner .section-subtitle {
    color: var(--secondary);
    animation: fadeInDown 1s ease forwards;
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 3rem;
    }

    .page-banner {
        height: 50vh;
    }
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    width: 100%;
}

.heroSwiper {
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-content {
    max-width: 800px;
    padding: 2rem;
    color: var(--white);
    z-index: 2;
}

.slide-subtitle {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    animation: fadeInDown 1s ease forwards;
}

.slide-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease forwards 0.3s;
    opacity: 0;
}

.slide-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease forwards 0.6s;
    opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--white);
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.welcome-content h2 {
    margin-bottom: 1.5rem;
}

.welcome-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.welcome-image img {
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--secondary);
}

/* Services 3-Col Grid */
.services-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-col-item {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    padding-bottom: 2rem;
    transition: var(--transition);
}

.service-col-item:hover {
    transform: translateY(-10px);
}

.service-img {
    height: 250px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

.service-col-item h3 {
    font-size: 1.25rem;
    padding: 0 1.5rem;
}

/* Stats Section */
.stats-section {
    background: var(--accent);
    color: var(--white);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--accent);
    color: var(--white);
}

.why-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.why-item:hover .why-icon {
    color: var(--secondary);
}

.why-item h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Gallery 4-Col Grid */
.gallery-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-box {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

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

.gallery-box::after {
    content: '\f00e';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--white);
    font-size: 2rem;
    transition: var(--transition);
    z-index: 2;
}

.gallery-box:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.gallery-box:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Contact Section Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: var(--accent);
    padding: 3.5rem;
    border-radius: 30px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-top: 0.3rem;
}

.info-item h4 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.info-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-form {
    padding: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(139, 94, 60, 0.1);
}

.map-section iframe {

    opacity: 0.8;
    transition: var(--transition);
}

.map-section iframe:hover {
    filter: none;
    opacity: 1;
}

/* Testimonials */
.testimonial-section {
    background: var(--bg-light);
}

.testimonialSwiper {
    padding: 50px 0 80px;
}

.testi-card {
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    left: 3rem;
}

.testi-card p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.testi-user h4 {
    color: var(--accent);
    font-size: 1.5rem;
}

.testi-user span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--accent);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
}

.footer-about p {
    margin: 1.5rem 0;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    opacity: 0.7;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 1rem;
    opacity: 0.7;
    display: flex;
    gap: 1rem;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .welcome-image img {
        box-shadow: none;
    }

    .services-col-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-4-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 0;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 251, 247, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding-top: 100px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0.6rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered Entrance */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 1.8rem;
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .btn-nav {
        display: none;
    }

    .slide-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 576px) {

    .services-col-grid,
    .why-grid,
    .gallery-4-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .slide-title {
        font-size: 2.2rem;
    }

    .slide-btns {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    display: none;
    /* Keep this to be controlled by JS */
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoom 0.6s;
    object-fit: contain;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
}

.lightbox-close {
    position: absolute;
    top: 50px;
    right: 50px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary);
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* Animations for JS */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}










.c-phone {
	display: flex;
	position: fixed;
	width: 150px;
	height: 40px;
	bottom: 150px;
	left: 20px;
	z-index: 100;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;

}

.c-phone img {
	width: 40px;
	margin-left: -6px;

}

.c-phone p {
	padding: 8px 0px 5px 13px;
	text-align: center;
	font-weight: 600;


}


.float {
	display: flex;
	position: fixed;
	width: 150px;
	height: 40px;
	bottom: 95px;
	left: 20px;
	z-index: 100;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;

}

.float img {
	width: 40px;
	margin-left: -6px;

}

.float p {
	padding: 8px 0px 5px 10px;
	text-align: center;
	font-weight: 600;


}


