/* ============================================
   Global Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C9A96E;
    --secondary-color: #1a1a1a;
    --accent-color: #8B7355;
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f8f8f8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo img {
    height: 80px;
    width: auto;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo img:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.navbar.scrolled .logo img {
    height: 65px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--white);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    transition: var(--transition);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomIn 20s ease-in-out infinite;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

.animate-text {
    animation: fadeInUp 1s ease-out;
}

.animate-text-delay {
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.animate-btn {
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 50px;
    background: var(--white);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% {
        opacity: 0.3;
        height: 30px;
    }
    50% {
        opacity: 1;
        height: 50px;
    }
}

/* ============================================
   Buttons
   ============================================ */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.light {
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

.cta-button.light::before {
    background: var(--primary-color);
}

.cta-button.light:hover {
    color: var(--white);
}

.link-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.link-button:hover {
    gap: 15px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 100px 0;
}

.section-header,
.section-header-center {
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 18px;
    color: var(--light-text);
}

.section-text {
    font-size: 16px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-text {
    font-size: 18px;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Grid Layouts */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ============================================
   About Preview Section
   ============================================ */
.about-preview {
    background: var(--white);
}

.content-box {
    padding-right: 40px;
}

.image-box {
    position: relative;
}

.floating-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-color);
    z-index: -1;
}

/* ============================================
   Services Section
   ============================================ */
.services-preview {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 1;
}

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

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--white);
}

.service-card p {
    color: var(--light-text);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover .service-link {
    color: var(--white);
}

/* ============================================
   Featured Projects
   ============================================ */
.featured-projects {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.project-item {
    position: relative;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
    border-radius: 5px;
}

.project-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

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

.project-info h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.project-info p {
    color: var(--primary-color);
    font-size: 14px;
}

/* ============================================
   Statistics Section
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--bg-light);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    min-height: 300px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.testimonial-content {
    background: var(--white);
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.9), rgba(139, 115, 85, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a1a" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #999;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
}

/* ============================================
   Fixed Contact Sidebar (Right Side)
   ============================================ */
.fixed-contact-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
    border-radius: 50px 0 0 50px;
    overflow: visible;
    padding: 5px 0;
    margin-right: 0;
}

.contact-bar-item {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--secondary-color);
    font-size: 20px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin: 2px 0;
}

.contact-bar-item:first-child {
    margin-top: 0;
}

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

.contact-bar-item:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(-5px);
    box-shadow: -3px 0 15px rgba(201, 169, 110, 0.4);
}

.contact-bar-item::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.contact-bar-item:hover::before {
    opacity: 1;
    right: 75px;
}

/* WhatsApp item with green color */
.contact-bar-item.whatsapp-item {
    background: #25D366 !important;
    color: var(--white) !important;
    animation: pulseGreen 2.5s ease-in-out infinite;
}

@keyframes pulseGreen {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px 3px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
}

.contact-bar-item.whatsapp-item:hover {
    background: #20BA5A !important;
    color: var(--white) !important;
    animation: none;
    transform: translateX(-5px) scale(1.05);
}

/* Scroll to top button */
.contact-bar-item.scroll-top-btn {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.3s ease;
}

.contact-bar-item.scroll-top-btn:hover {
    background: var(--accent-color) !important;
}

/* ============================================
   WhatsApp Floating Button (Bottom Right)
   ============================================ */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulseFloat 2s infinite;
}

@keyframes pulseFloat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
}

.whatsapp-floating-btn:hover {
    transform: scale(1.15);
    background: #20BA5A;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding-top: 80px;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
}

.page-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    margin-top: 20px;
}

.page-title {
    font-size: 56px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--white);
}

/* ============================================
   About Page Styles
   ============================================ */
.about-main {
    background: var(--white);
}

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

.about-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    transition: var(--transition);
}

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

.mission-vision {
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mv-card {
    background: var(--white);
    padding: 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mv-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.mv-card p {
    color: var(--light-text);
    line-height: 1.8;
}

.why-choose-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-light);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    min-width: 60px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: var(--bg-light);
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 60px;
    width: 2px;
    height: calc(100% + 60px);
    background: var(--primary-color);
}

.process-step:last-child::before {
    display: none;
}

.process-number {
    min-width: 100px;
    height: 100px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.process-content {
    flex: 1;
    padding-top: 10px;
}

.process-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.process-content p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.team-member:hover .team-image {
    transform: scale(1.1);
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.team-member:hover .team-info {
    transform: translateY(0);
}

.team-info h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-color);
    font-size: 14px;
}

/* ============================================
   Services Page Styles
   ============================================ */
.services-intro,
.gallery-intro,
.contact-intro {
    background: var(--white);
    padding: 60px 0;
}

.main-services {
    background: var(--white);
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse .service-detail-grid {
    direction: rtl;
}

.service-detail.reverse .service-detail-content {
    direction: ltr;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-detail-content {
    padding: 40px 0;
}

.service-number {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 20px;
}

.service-detail-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.service-detail-content p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.service-img {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

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

.additional-services {
    background: var(--bg-light);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.additional-card {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

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

.additional-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.additional-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* ============================================
   Gallery Page Styles
   ============================================ */
.gallery-filter-section {
    background: var(--white);
    padding: 30px 0 50px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-section {
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    height: 350px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 5px;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(201, 169, 110, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay i {
    font-size: 48px;
    color: var(--white);
}

.gallery-loader {
    text-align: center;
    padding: 40px;
    display: none;
}

.gallery-loader.active {
    display: block;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

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

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--white);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--white);
    color: var(--secondary-color);
}

#lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 20px;
    font-size: 18px;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    background: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-info-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-content p {
    color: var(--light-text);
    line-height: 1.7;
}

.contact-info-content a {
    color: var(--light-text);
    transition: var(--transition);
}

.contact-info-content a:hover {
    color: var(--primary-color);
}

.social-links-contact {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links-contact a {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

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

/* Map Section */
.map-section {
    background: var(--white);
    padding: 0;
}

.map-container {
    width: 100%;
    height: 450px;
}

.map-container iframe {
    filter: grayscale(1);
    transition: var(--transition);
}

.map-container:hover iframe {
    filter: grayscale(0);
}

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

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--light-text);
    line-height: 1.8;
}

/* ============================================
   Animation Classes
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.fade-in-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 3D Tilt Effect */
[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
    text-align: center;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .section-grid,
    .service-detail-grid,
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail.reverse .service-detail-grid {
        direction: ltr;
    }

    .content-box {
        padding-right: 0;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        height: 400px;
        padding-top: 80px;
    }

    .logo img {
        height: 60px;
    }

    .navbar.scrolled .logo img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .page-title {
        font-size: 42px;
    }

    .services-grid,
    .projects-grid,
    .features-grid,
    .additional-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 30px;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .process-step::before {
        left: 50px;
        top: 100px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

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

    /* Mobile Contact Bar - Keep on right side */
    .fixed-contact-bar {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 40px 0 0 40px;
        margin-right: 0;
    }

    .contact-bar-item {
        width: 48px;
        height: 48px;
        font-size: 17px;
    }

    .contact-bar-item:hover {
        transform: translateX(-3px);
    }

    .contact-bar-item::before {
        font-size: 11px;
        padding: 6px 12px;
        right: 55px;
    }

    .contact-bar-item:hover::before {
        right: 60px;
    }

    .whatsapp-floating-btn {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-header {
        height: 350px;
    }

    .page-title {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .stat-number {
        font-size: 48px;
    }

    .service-number {
        font-size: 56px;
    }

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

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

    /* Mobile phone - reduce padding for contact section */
    .container {
        padding: 0 15px;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px 15px;
    }

    .contact-info-card {
        padding: 15px;
        gap: 15px;
    }

    .contact-info-icon {
        min-width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Extra small screens - compact contact bar */
    .fixed-contact-bar {
        border-radius: 35px 0 0 35px;
        margin-right: 0;
    }

    .contact-bar-item {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .contact-bar-item:hover {
        transform: translateX(-2px);
    }

    .contact-bar-item::before {
        display: none; /* Hide tooltips on very small screens */
    }
}

