* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: #1a1a1a;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Your Logo Colors */
:root {
    --primary: #3C4F3B;
    --primary-dark: #2A3A29;
    --primary-light: #5A7A58;
    --gold: #B48A28;
    --gold-light: #D4A83C;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #6B7280;
    --gray-800: #1F2937;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 16px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 60px;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover img {
    transform: scale(1.05) rotate(2deg);
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 1px solid var(--gray-200);
    padding-left: 12px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--gold);
}

/* Call Us Button */
.call-us-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
    cursor: pointer;
    flex-shrink: 0;
}

.call-us-btn:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 4px 12px rgba(180, 138, 40, 0.3);
}

.call-us-btn i {
    color: var(--gold);
    font-size: 0.9rem;
}

.call-us-btn span {
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F9FA 0%, #F0F2F5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(180, 138, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--primary);
    line-height: 1.2;
}

.hero h1 span {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(180, 138, 40, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    border: 1px solid var(--primary);
    background: transparent;
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}

.stat-item p {
    margin-bottom: 0;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.services-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateY(40px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:nth-child(1).visible {
    transition-delay: 0.05s;
}

.service-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.service-card:nth-child(3).visible {
    transition-delay: 0.15s;
}

.service-card:nth-child(4).visible {
    transition-delay: 0.2s;
}

.service-card:nth-child(5).visible {
    transition-delay: 0.25s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold-light);
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(60, 79, 59, 0.3), rgba(180, 138, 40, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
    color: var(--gold);
}

.service-content>p {
    color: var(--gray-600);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
}

.service-features li {
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-features li {
    transform: translateX(5px);
}

.service-features li i {
    color: var(--gold);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-features li i {
    transform: scale(1.2);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat-card.visible {
    opacity: 1;
    transform: scale(1);
}

.stat-card:nth-child(1).visible {
    transition-delay: 0.05s;
}

.stat-card:nth-child(2).visible {
    transition-delay: 0.1s;
}

.stat-card:nth-child(3).visible {
    transition-delay: 0.15s;
}

.stat-card:nth-child(4).visible {
    transition-delay: 0.2s;
}

.stat-card:nth-child(5).visible {
    transition-delay: 0.25s;
}

.stat-card:nth-child(6).visible {
    transition-delay: 0.3s;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-card p {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gray-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-text.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-text h3 {
    font-size: 1rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.signature {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 24px;
    position: relative;
    display: inline-block;
}

.signature::before {
    content: '"';
    font-size: 3rem;
    position: absolute;
    left: -25px;
    top: -15px;
    opacity: 0.3;
    color: var(--gold);
}

.about-image {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.about-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.about-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Investment Section */
.investment {
    padding: 80px 0;
    background: var(--white);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.tier-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--gray-100);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.tier-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tier-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.tier-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.tier-card:nth-child(3).visible {
    transition-delay: 0.3s;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--gold);
}

.tier-card.featured {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, white, var(--gray-50));
}

.tier-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.tier-card h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.tier-price {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
    margin: 16px 0;
}

.tier-price span {
    font-size: 1rem;
    font-weight: normal;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin-top: 24px;
}

.tier-features li {
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.tier-card:hover .tier-features li {
    transform: translateX(5px);
}

.tier-features li i {
    color: var(--gold);
    width: 20px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
    background: var(--gray-50);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.partner-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--gray-100);
    opacity: 0;
    transform: translateY(30px);
}

.partner-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.partner-card:nth-child(1).visible {
    transition-delay: 0.1s;
}

.partner-card:nth-child(2).visible {
    transition-delay: 0.2s;
}

.partner-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.partner-card h3 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.partner-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    margin: 12px 0;
}

/* Branches Section */
.branches {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.branch-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid var(--gray-100);
}

.branch-card:first-child {
    opacity: 0;
    transform: translateY(-100px) rotateX(-30deg);
    transform-origin: top;
}

.branch-card:first-child.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.branch-card:last-child {
    opacity: 0;
    transform: translateY(100px) rotateX(30deg);
    transform-origin: bottom;
}

.branch-card:last-child.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.branch-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.branch-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.branch-card:hover img {
    transform: scale(1.05);
}

.branch-info {
    padding: 28px;
    position: relative;
}

.branch-info h3 {
    color: var(--primary);
    margin-bottom: 16px;
    font-size: 1.4rem;
    position: relative;
    display: inline-block;
}

.branch-info h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.branch-card:hover .branch-info h3::after {
    width: 100%;
}

.branch-info p {
    color: var(--gray-600);
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.branch-card:hover .branch-info p {
    transform: translateX(5px);
}

.branch-info i {
    color: var(--gold);
    width: 22px;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
    background: var(--gray-50);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item.visible {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item:nth-child(1).visible {
    transition-delay: 0.05s;
}

.portfolio-item:nth-child(2).visible {
    transition-delay: 0.1s;
}

.portfolio-item:nth-child(3).visible {
    transition-delay: 0.15s;
}

.portfolio-item:nth-child(4).visible {
    transition-delay: 0.2s;
}

.portfolio-item:nth-child(5).visible {
    transition-delay: 0.25s;
}

.portfolio-item:nth-child(6).visible {
    transition-delay: 0.3s;
}

.portfolio-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item:hover img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(60, 79, 59, 0.95));
    color: white;
    padding: 24px;
    transition: bottom 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.portfolio-item:hover .portfolio-overlay {
    bottom: 0;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    padding: 20px 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    margin: 0 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.rating {
    margin-bottom: 16px;
}

.rating i {
    color: var(--gold);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 0.95rem;
    color: var(--primary);
}

.author-info p {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--gold);
    background: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background: var(--gold);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.alert {
    padding: 16px 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.4s ease;
}

.alert-success {
    background: rgba(60, 79, 59, 0.1);
    border-left: 4px solid var(--primary);
    color: var(--primary);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    border-left: 4px solid #dc3545;
    color: #dc3545;
}

.alert i {
    font-size: 1.2rem;
}

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.form-header {
    margin-bottom: 32px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-header p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-form {
    flex: 1;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form label i {
    color: var(--gold);
    font-size: 0.8rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(180, 138, 40, 0.1);
}

.btn-submit-contact {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.location-map {
    margin-top: 30px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: 20px;
    transition: var(--transition);
}

.location-map:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.location-map h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-map h4 i {
    color: var(--gold);
}

.location-map p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.5;
}

.map-container {
    margin: 15px 0;
    border-radius: 12px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    border: none;
    transition: var(--transition);
}

.map-container iframe:hover {
    transform: scale(1.01);
}

.map-direction-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 5px;
}

.map-direction-btn:hover {
    background: var(--gold);
    gap: 12px;
    transform: translateX(3px);
}

.contact-info-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.info-section {
    margin-bottom: 30px;
}

.info-section h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.info-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.info-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.info-detail:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.info-detail:hover .info-icon {
    background: var(--gold);
}

.info-icon i {
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.info-detail:hover .info-icon i {
    color: white;
}

.info-content h4 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.bengaluru-map .map-container iframe {
    height: 250px;
}

.tirupati-map .map-container iframe {
    height: 200px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2a1a 100%);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary-light), var(--gold));
}

.footer::after {
    content: 'LOD';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 6rem;
    opacity: 0.03;
    font-weight: 800;
    pointer-events: none;
}

.footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.brand-col {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-logo h3 {
    font-size: 1.1rem;
    color: var(--gold);
    margin: 0;
}

.footer-logo h3 span {
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--gold);
    transform: translateY(-5px) rotate(360deg);
    color: var(--primary-dark);
}

.footer-col h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col h4 i {
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-link i {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.contact-link:hover i {
    background: var(--gold);
    color: var(--primary-dark);
}

.contact-link div {
    display: flex;
    flex-direction: column;
}

.contact-link span {
    font-size: 0.7rem;
    opacity: 0.7;
}

.contact-link strong {
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    margin-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
}

.designer-credit i {
    color: var(--gold);
    animation: heartbeat 1.5s ease infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.designer-credit strong {
    color: var(--gold);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .contact-new-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .call-us-btn {
        order: 2;
        margin-left: auto;
        margin-right: 12px;
        padding: 6px 14px;
    }

    .call-us-btn span {
        font-size: 0.7rem;
    }

    .call-us-btn i {
        font-size: 0.75rem;
    }

    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        gap: 15px;
        background: white;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-row,
    .services-row-bottom,
    .branches-grid,
    .tiers-grid,
    .partners-grid,
    .contact-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .brand-col {
        grid-column: span 1;
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4 {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .contact-link {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-image img {
        max-width: 100%;
    }

    .testimonials-slider {
        padding: 20px 30px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .testimonial-card {
        padding: 24px;
        margin: 0 10px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .logo-tagline {
        font-size: 0.6rem;
        padding-left: 6px;
    }

    .call-us-btn {
        padding: 4px 10px;
        margin-right: 8px;
    }

    .call-us-btn span {
        font-size: 0.6rem;
    }

    .call-us-btn i {
        font-size: 0.65rem;
    }

    .menu-toggle {
        font-size: 20px;
    }

    .testimonials-slider {
        padding: 20px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 30px;
        height: 30px;
    }
}

/* Additional animations */
@keyframes shine {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Branch Locations Pins */
.branch-locations {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.branch-pin {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(180, 138, 40, 0.2);
}

.branch-pin:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.pin-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pin-icon i {
    font-size: 0.7rem;
    color: var(--gold);
}

.pin-info {
    display: flex;
    flex-direction: column;
}

.pin-city {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pin-status {
    font-size: 0.65rem;
    color: var(--gold);
    font-weight: 500;
}

/* Responsive for branch pins */
@media (max-width: 768px) {
    .branch-locations {
        justify-content: center;
        gap: 12px;
    }

    .branch-pin {
        padding: 6px 14px;
    }

    .pin-icon {
        width: 24px;
        height: 24px;
    }

    .pin-icon i {
        font-size: 0.6rem;
    }

    .pin-city {
        font-size: 0.7rem;
    }

    .pin-status {
        font-size: 0.55rem;
    }
}