/* ============================================
   KERALA TRADITIONAL VASTU CONSULTANT
   Premium Luxury Website Stylesheet
   Designer: Global Tech Solutions
   ============================================ */

/* --- CSS Variables --- */
:root {
    --primary: #6A1B1A;
    --primary-dark: #4a1211;
    --primary-light: #8b2524;
    --secondary: #C89B3C;
    --secondary-light: #d4b76a;
    --accent: #FDFBF7;
    --bg: #FAF8F3;
    --dark: #222222;
    --dark-light: #333333;
    --gray: #666666;
    --light-gray: #e8e4dc;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #C89B3C 0%, #e8c878 50%, #C89B3C 100%);
    --maroon-gradient: linear-gradient(135deg, #6A1B1A 0%, #8b2524 100%);
    --shadow-sm: 0 2px 10px rgba(106, 27, 26, 0.08);
    --shadow-md: 0 8px 30px rgba(106, 27, 26, 0.12);
    --shadow-lg: 0 20px 60px rgba(106, 27, 26, 0.15);
    --shadow-gold: 0 8px 30px rgba(200, 155, 60, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Poppins', sans-serif;
    --font-sub: 'Lora', serif;
    --font-btn: 'Montserrat', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--secondary);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    font-family: var(--font-body);
    color: var(--gray);
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary);
}

/* --- Section Common --- */
.section-padding {
    padding: 100px 0;
}

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

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title .subtitle {
    font-family: var(--font-sub);
    font-size: 1.1rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    font-family: var(--font-btn);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: var(--transition);
    transform: skewX(-15deg);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 155, 60, 0.35);
    color: var(--primary-dark);
}

.btn-secondary {
    background: var(--maroon-gradient);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

.btn-sm {
    padding: 10px 25px;
    font-size: 0.8rem;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header.scrolled .nav-link,
.header.scrolled .logo-text {
    color: var(--primary);
}

.header.scrolled .logo-icon {
    color: var(--secondary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    box-shadow: var(--shadow-gold);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}

.logo-text span {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.nav-link {
    font-family: var(--font-btn);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    padding: 8px 0 !important;
    margin: 0 15px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 1px;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}

.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: transparent;
}

.navbar-toggler span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.header.scrolled .navbar-toggler span {
    background: var(--primary);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease;
}

.hero-slider .swiper-slide-active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(34,34,34,0.3) 0%, rgba(106,27,26,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 900px;
}

.hero-content .hero-subtitle {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--secondary-light);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content .hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .hero-subtitle,
.swiper-slide-active h1,
.swiper-slide-active p,
.swiper-slide-active .hero-buttons {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}

.swiper-slide-active .hero-subtitle { transition-delay: 0.3s; }
.swiper-slide-active h1 { transition-delay: 0.5s; }
.swiper-slide-active p { transition-delay: 0.7s; }
.swiper-slide-active .hero-buttons { transition-delay: 0.9s; }

.swiper-button-next,
.swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.call {
    background: var(--primary);
}

.floating-btn.scroll-top {
    background: var(--secondary);
    color: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-btn.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-btn .tooltip {
    position: absolute;
    right: 65px;
    background: var(--dark);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-family: var(--font-btn);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* --- About Preview --- */
.about-preview {
    background: var(--accent);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(200,155,60,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--secondary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
}

.about-content h3 {
    margin-bottom: 20px;
}

.about-content .lead {
    font-family: var(--font-sub);
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-style: italic;
}

/* --- Why Choose Us --- */
.why-choose {
    background: var(--bg);
    position: relative;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(200,155,60,0.1);
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(106,27,26,0.05) 0%, rgba(200,155,60,0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary);
    transition: var(--transition);
    border: 2px solid rgba(200,155,60,0.2);
}

.feature-card:hover .feature-icon {
    background: var(--gold-gradient);
    color: var(--primary);
    transform: rotateY(360deg);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Services Preview --- */
.services-preview {
    background: var(--accent);
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(200,155,60,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(106,27,26,0.6), transparent);
}

.service-content {
    padding: 30px;
}

.service-content h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.service-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* --- Process Steps --- */
.process-section {
    background: var(--bg);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--secondary), transparent);
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-gold);
    position: relative;
    border: 4px solid var(--white);
}

.step-number::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px dashed var(--secondary);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.9rem;
    max-width: 250px;
    margin: 0 auto;
}

.step-arrow {
    position: absolute;
    top: 40px;
    right: -30px;
    color: var(--secondary);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* --- FAQ Section --- */
.faq-section {
    background: var(--accent);
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid rgba(200,155,60,0.1);
}

.accordion-button {
    background: var(--white);
    font-family: var(--font-sub);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    padding: 25px 30px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(106,27,26,0.03) 0%, rgba(200,155,60,0.05) 100%);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236A1B1A'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    width: 1.2rem;
    height: 1.2rem;
    background-size: 1.2rem;
    transition: var(--transition);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 30px 25px;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* --- Reviews --- */
.reviews-section {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50px;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: rgba(200,155,60,0.05);
    line-height: 1;
    pointer-events: none;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(200,155,60,0.1);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stars {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.review-text {
    font-family: var(--font-sub);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--secondary);
}

.reviewer-info h5 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.reviewer-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

/* --- Statistics --- */
.stats-section {
    background: var(--maroon-gradient);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 80px 80px;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-family: var(--font-btn);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,155,60,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

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

.footer-about p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-3px);
    border-color: var(--secondary);
}

.footer-map {
    border-radius: 15px;
    overflow: hidden;
    height: 200px;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.3) contrast(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--secondary);
}

/* --- Page Banner --- */
.page-banner {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(106,27,26,0.85) 0%, rgba(34,34,34,0.7) 100%);
}

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

.page-banner-content h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-banner-content p {
    color: var(--secondary-light);
    font-family: var(--font-sub);
    font-size: 1.2rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 20px 0 0;
    justify-content: center;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-btn);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item.active {
    color: var(--secondary);
}

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

/* --- About Page --- */
.about-content-block {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,155,60,0.1);
}

.about-content-block h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.about-content-block h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-img-grid img {
    border-radius: 15px;
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-img-grid img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

/* --- Services Page --- */
.service-detail-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(200,155,60,0.1);
    height: 100%;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.service-detail-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(106,27,26,0.7), transparent);
}

.service-detail-content {
    padding: 35px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-benefits li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li i {
    color: var(--secondary);
    font-size: 0.9rem;
}

/* --- Gallery Page --- */
.gallery-section {
    background: var(--bg);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-btn);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
    min-height: 280px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(106,27,26,0.9) 0%, rgba(106,27,26,0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
    transition-delay: 0.15s;
}

.gallery-item:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* --- Contact Page --- */
.contact-section {
    background: var(--accent);
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,155,60,0.1);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--light-gray);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, rgba(106,27,26,0.05) 0%, rgba(200,155,60,0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    border: 1px solid rgba(200,155,60,0.2);
}

.contact-info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-info-item a:hover {
    color: var(--secondary);
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,155,60,0.1);
    height: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-family: var(--font-btn);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.form-control,
.form-select {
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--dark);
    background: var(--bg);
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(200,155,60,0.1);
    background: var(--white);
}

.form-control::placeholder {
    color: #aaa;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(200,155,60,0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.business-hours {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,155,60,0.1);
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

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

.hours-item span:first-child {
    color: var(--gray);
}

.hours-item span:last-child {
    color: var(--primary);
    font-weight: 500;
}

/* --- Privacy Policy --- */
.privacy-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,155,60,0.1);
}

.privacy-content h3 {
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
    position: relative;
}

.privacy-content h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
}

.privacy-content p,
.privacy-content li {
    color: var(--gray);
    line-height: 1.9;
}

.privacy-content ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 10px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .section-padding {
        padding: 70px 0;
    }

    .header {
        background: rgba(253, 251, 247, 0.95);
        backdrop-filter: blur(20px);
        padding: 12px 0;
    }

    .logo-text,
    .nav-link {
        color: var(--primary);
    }

    .navbar-toggler span {
        background: var(--primary);
    }

    .navbar-collapse {
        background: var(--white);
        border-radius: 15px;
        padding: 20px;
        margin-top: 15px;
        box-shadow: var(--shadow-md);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .step-arrow {
        display: none;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .about-content-block,
    .contact-info-card,
    .contact-form-card,
    .privacy-content {
        padding: 30px;
    }

    .about-img-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-content .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .floating-buttons {
        right: 15px;
        bottom: 80px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .review-card {
        padding: 25px;
    }

    .gallery-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .page-banner {
        height: 40vh;
        min-height: 300px;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 575px) {
    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 25px;
    }

    .privacy-content {
        padding: 25px;
    }
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

/* --- Glassmorphism --- */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- LightGallery Custom --- */
.lg-backdrop {
    background: rgba(34, 34, 34, 0.95);
}

.lg-toolbar .lg-icon,
.lg-actions .lg-next,
.lg-actions .lg-prev {
    color: var(--white);
}

.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--secondary);
}
