/* ===================================
   Reset & Global Styles
   =================================== */

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

:root {
    --primary: #0B1C2D;
    --gold: #C6A75E;
    --white: #FFFFFF;
    --cream: #FFF8F0;
    --dark-grey: #222222;
    --light-grey: #F5F5F5;
    --shadow: rgba(11, 28, 45, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
    color: #222;
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

/* ===================================
   Typography
   =================================== */

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

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.5;
}

.section-label.light {
    color: var(--gold);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.section-title {
    font-size: 48px;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.2;
    font-weight: 800;
}

.section-title.light {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.section-description {
    font-size: 18px;
    color: #444;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
}

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

/* ===================================
   Buttons
   =================================== */

.btn-primary,
.btn-outline,
.btn-submit {
    display: inline-block;
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--gold);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #b8944f;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 167, 94, 0.4);
    border-color: #b8944f;
}

.btn-outline {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-outline:hover {
    background: #b8944f;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(198, 167, 94, 0.4);
    border-color: #b8944f;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
}

.btn-submit:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===================================
   Navigation
   =================================== */

/* Always show navbar with background */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    background: var(--primary);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.12);
    transition: var(--transition);
    will-change: transform;
}

/* Hide navbar when scrolling down */
.navbar.hide-navbar {
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: var(--primary);
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

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

.logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.logo-subtext {
    font-size: 12px;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 45px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 15px;
    transition: var(--transition);
    font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--primary);
}

.lang-btn:hover:not(.active) {
    color: var(--gold);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    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-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(11, 28, 45, 0.85));
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    background: var(--gold);
    padding: 14px 32px;
    display: inline-block;
    border-radius: 50px;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Floating Elements
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    z-index: 999;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    transition: var(--transition);
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 50px rgba(37, 211, 102, 0.7);
}

.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

/* ===================================
   About Section
   =================================== */

.about {
    padding: 100px 0;
    background: var(--white);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 30px 30px 0 var(--gold);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.badge-text {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.about-text {
    font-size: 17px;
    line-height: 2;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 32px;
    color: var(--gold);
    margin-top: 5px;
}

.highlight-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary);
    line-height: 1.4;
    font-weight: 600;
}

.highlight-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

/* ===================================
   Services Section
   =================================== */

.services {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.service-card {
    background: var(--white);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold);
    background: var(--cream);
    border-radius: 16px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gold);
    color: var(--white);
    transform: rotate(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary);
    line-height: 1.4;
    font-weight: 700;
}

.service-card p {
    color: #333;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 400;
}

.service-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto 0;
}

/* ===================================
   NRI Section
   =================================== */

.nri-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2538 100%);
    position: relative;
    overflow: hidden;
}

.nri-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(198,167,94,0.1)"/></svg>');
    opacity: 0.3;
}

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

.nri-header {
    text-align: center;
    margin-bottom: 80px;
}

.nri-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.nri-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.nri-feature-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 32px 24px;
    text-align: center;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 167, 94, 0.3);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nri-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.nri-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--primary);
    font-size: 32px;
    transition: var(--transition);
}

.nri-feature-card:hover .nri-icon {
    transform: scale(1.1) rotate(360deg);
}

.nri-feature-card h4 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    font-weight: 600;
}

.nri-feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 15px;
    font-weight: 400;
}

.nri-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===================================
   Projects Section
   =================================== */

.projects {
    padding: 100px 0;
    background: var(--white);
}

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

.project-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    cursor: pointer;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 28, 45, 0.98) 0%, rgba(11, 28, 45, 0.85) 50%, rgba(11, 28, 45, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

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

.project-card:hover .project-image {
    transform: scale(1.08);
}

.project-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.project-info h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 8px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.3;
}

.project-info p {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.project-link {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

/* ===================================
   Why Choose Us Section
   =================================== */

.why-choose {
    padding: 100px 0;
    background: var(--primary);
}

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

.feature-card {
    text-align: center;
    padding: 40px 28px;
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
    box-shadow: 0 6px 32px rgba(0,0,0,0.10);
    transition: var(--transition);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--gold);
    border: 2.5px solid var(--gold);
    border-radius: 50%;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 2px 12px rgba(198,167,94,0.10);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   Process Section
   =================================== */

.process {
    padding: 100px 0;
    background: var(--cream);
}

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

.process-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.process-number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 800;
    color: var(--gold);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1;
}

.process-card h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.process-card p {
    color: #444;
    line-height: 2;
    font-size: 15px;
    font-weight: 500;
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-grey);
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 2;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: 400;
}

.testimonial-author h4 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
}

.testimonial-author span {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.contact-description {
    font-size: 17px;
    color: #555;
    line-height: 2;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 16px;
    border: 2px solid var(--gold);
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item i {
    font-size: 32px;
    color: var(--gold);
}

.trust-item strong {
    font-size: 28px;
    color: var(--primary);
    font-weight: 800;
    line-height: 1;
}

.trust-item span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 24px;
    color: var(--gold);
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.4;
    font-weight: 600;
}

.contact-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

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

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(198, 167, 94, 0.4);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    font-family: 'Noto Sans Gujarati', 'Poppins', sans-serif;
    line-height: 1.5;
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: var(--white);
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: var(--transition);
    width: 90%;
}

.form-success.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.form-success i {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.form-success p {
    font-size: 16px;
    color: #555;
    line-height: 2;
    font-weight: 400;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--primary);
    color: var(--white);
    padding: 100px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 80px;
    padding-bottom: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-section h4 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.85);
    line-height: 2;
    font-size: 15px;
    font-weight: 400;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 400;
    font-size: 15px;
}

.footer-contact i {
    color: var(--gold);
    font-size: 18px;
    min-width: 20px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-weight: 400;
}

/* ===================================
   Animations
   =================================== */

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

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up {
    transform: translateY(50px);
}

.fade-in-left {
    transform: translateX(-50px);
}

.fade-in-right {
    transform: translateX(50px);
}

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
        line-height: 1.3;
        text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.7);
    }

    .hero-subtitle {
        font-size: 20px;
        line-height: 1.7;
        padding: 10px 18px;
    }

    .section-title {
        font-size: 40px;
        line-height: 1.3;
    }

    .section-description {
        font-size: 17px;
        line-height: 1.9;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image img {
        height: 500px;
    }

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

    .project-card {
        height: 400px;
    }

    .service-card {
        padding: 45px 35px;
    }

    .nri-feature-card,
    .feature-card {
        padding: 40px 30px;
    }

    .testimonial-card {
        padding: 45px 35px;
    }

    .contact-form {
        padding: 45px 40px;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 15px;
    }

    .language-toggle {
        padding: 6px 12px;
        gap: 8px;
    }

    .lang-btn {
        font-size: 12px;
        padding: 4px 10px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 100px 50px;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

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

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero {
        height: 100vh;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.3;
        text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.8);
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.7;
        padding: 12px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 350px;
        padding: 16px 35px;
    }

    .section-title {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .section-description {
        font-size: 16px;
        line-height: 1.9;
    }

    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .nri-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-card h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .service-card p {
        font-size: 15px;
        line-height: 2;
    }

    .about-image img {
        height: 400px;
        box-shadow: 20px 20px 0 var(--gold);
    }

    .about-text {
        font-size: 16px;
        line-height: 2;
    }

    .project-card {
        height: 350px;
    }

    .project-overlay {
        padding: 30px 25px;
    }

    .project-info h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .nri-feature-card {
        padding: 35px 25px;
    }

    .nri-feature-card h3,
    .feature-card h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .nri-feature-card p,
    .feature-card p {
        font-size: 15px;
        line-height: 2;
    }

    .testimonial-card {
        padding: 40px 30px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 2;
    }

    .contact-form {
        padding: 35px;
    }

    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 15px;
        padding: 15px 18px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }

    .scroll-top {
        bottom: 90px;
        right: 20px;
    }

    .container {
        padding: 0 20px;
    }

    .modal-content {
        padding: 35px 25px;
        width: 90%;
    }

    .modal-content h3 {
        font-size: 24px;
        line-height: 1.4;
    }

    .modal-content p {
        font-size: 15px;
        line-height: 2;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 24px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        text-shadow: 3px 4px 12px rgba(0, 0, 0, 0.9);
        margin-bottom: 18px;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.7;
        padding: 10px 16px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 15px;
        line-height: 2;
    }

    .section-label {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .about-image img {
        box-shadow: 15px 15px 0 var(--gold);
        height: 350px;
    }

    .about-text {
        font-size: 15px;
        line-height: 2;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .service-card p {
        font-size: 14px;
        line-height: 2;
    }

    .service-badge {
        font-size: 10px;
        padding: 6px 12px;
        top: 15px;
        right: 15px;
    }

    .project-card {
        height: 300px;
    }

    .project-overlay {
        padding: 25px 20px;
    }

    .project-info h3 {
        font-size: 20px;
        line-height: 1.3;
    }

    .project-info p {
        font-size: 14px;
    }

    .project-link {
        font-size: 12px;
    }

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

    .nri-feature-card h3,
    .feature-card h3 {
        font-size: 19px;
        line-height: 1.4;
    }

    .nri-feature-card p,
    .feature-card p {
        font-size: 14px;
        line-height: 2;
    }

    .nri-description {
        font-size: 16px;
        line-height: 2;
    }

    .testimonial-card {
        padding: 35px 25px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 2;
    }

    .process-number {
        font-size: 60px;
    }

    .process-card {
        padding: 40px 25px;
    }

    .process-card h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .process-card p {
        font-size: 14px;
        line-height: 2;
    }

    .contact-form {
        padding: 25px;
    }

    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-section h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .announcement-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px 15px;
    }

    .announcement-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .modal-content h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .modal-content p {
        font-size: 14px;
        line-height: 2;
    }

    .modal-icon {
        font-size: 50px;
        margin-bottom: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 16px;
        line-height: 2;
    }

    .gallery-overlay {
        padding: 20px;
    }

    .gallery-overlay h4 {
        font-size: 18px;
    }

    .furniture-service-card {
        padding: 30px 20px;
    }

    .furniture-service-card h3 {
        font-size: 19px;
        line-height: 1.4;
    }

    .furniture-service-card p {
        font-size: 14px;
        line-height: 2;
    }

    .btn-primary,
    .btn-outline,
    .btn-submit {
        padding: 15px 35px;
        font-size: 15px;
    }
}
/* ===================================
   Announcement Banner
   =================================== */

.announcement-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.announcement-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
}

.announcement-content i {
    color: #fff;
    font-size: 22px;
}

.announcement-content p {
    color: var(--white);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.announcement-content strong {
    color: #fff;
    font-weight: 800;
}

/* ===================================
   Service Badges & States
   =================================== */

.service-card {
    position: relative;
    padding: 50px 35px;
    background: var(--white);
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.service-available {
    background: #10b981;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    animation: pulse 2s infinite;
    border-radius: 50px;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
}

.service-coming-soon {
    background: #f59e0b;
    color: var(--white);
    animation: comingSoonPulse 3s infinite ease-in-out;
    border-radius: 50px;
    font-weight: 700;
}

@keyframes comingSoonPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.service-active {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    box-shadow: 0 8px 40px rgba(198, 167, 94, 0.25);
}

.service-active:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 50px rgba(198, 167, 94, 0.35);
}

.service-disabled {
    opacity: 0.7;
    position: relative;
}

.service-disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.service-disabled:hover {
    transform: translateY(-3px);
}

.service-btn,
.service-btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
}

.service-btn {
    background: var(--gold);
    color: var(--white);
    font-weight: 600;
}

.service-btn:hover {
    background: var(--primary);
    transform: translateX(5px);
}

.service-btn-disabled {
    background: #e0e0e0;
    color: #666;
    font-weight: 600;
}

.service-btn-disabled:hover {
    background: #d0d0d0;
}

/* ===================================
   Coming Soon Modal
   =================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 28, 45, 0.9);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--white);
    padding: 50px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    font-weight: 300;
    color: var(--dark-grey);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.modal-icon {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.modal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    line-height: 2;
    font-weight: 400;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Furniture Page Styles
   =================================== */

.furniture-hero {
    min-height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    margin-top: 90px; /* Prevent overlap with navbar */
}

/* Add margin-top to all main hero/section classes to prevent overlap on all pages */
.hero, .main-hero, .about-section, .services-section, .projects-section, .contact-section, .furniture-services, .thanks-section {
    margin-top: 90px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s infinite;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.furniture-services {
    padding: 100px 0;
    background: var(--light-grey);
}

.furniture-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.furniture-service-card {
    background: var(--white);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.furniture-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--gold);
}

.furniture-icon {
    width: 80px;
    height: 80px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
    transition: var(--transition);
}

.furniture-icon i {
    font-size: 36px;
    color: var(--gold);
    transition: var(--transition);
}

.furniture-service-card:hover .furniture-icon {
    background: var(--gold);
}

.furniture-service-card:hover .furniture-icon i {
    color: var(--white);
}

.furniture-service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.4;
    font-weight: 600;
}

.furniture-service-card p {
    color: #555;
    line-height: 2;
    font-size: 15px;
    font-weight: 400;
}

.furniture-features {
    padding: 100px 0;
    background: var(--primary);
}

.furniture-features .section-title {
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.furniture-features .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.furniture-gallery {
    padding: 100px 0;
    background: var(--light-grey);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 28, 45, 0.95) 0%, rgba(11, 28, 45, 0.7) 50%, rgba(11, 28, 45, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: 20px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
    font-weight: 600;
}

.furniture-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #162d42 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.furniture-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(198, 167, 94, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    font-weight: 800;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

/* ===================================
   Responsive Updates
   =================================== */

@media (max-width: 768px) {
    .announcement-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .announcement-content p {
        font-size: 13px;
    }

    .service-badge {
        font-size: 10px;
        padding: 6px 12px;
        top: 10px;
        right: 10px;
    }

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

    .modal-content {
        padding: 35px 25px;
    }

    .modal-content h3 {
        font-size: 22px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .furniture-services-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}