/* ============================================
   Amit Credit Company Private Limited
   Premium Finance Website Stylesheet
   Theme: Light with Gold (#c8a24d) & Olive (#556b2f)
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors */
    --gold: #c8a24d;
    --gold-light: #e8d5a3;
    --gold-dark: #a0803a;
    --olive: #556b2f;
    --olive-light: #7a9a4a;
    --olive-dark: #3d4d22;
    
    /* Accent Colors */
    --cream: #faf8f3;
    --cream-dark: #f5f0e6;
    --white: #ffffff;
    --off-white: #fafafa;
    
    /* Text Colors */
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6a6a7a;
    --text-muted: #9a9aaa;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    --gradient-olive: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(200, 162, 77, 0.1) 0%, rgba(85, 107, 47, 0.08) 50%, rgba(250, 248, 243, 1) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 243, 0.9) 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1280px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-medium);
    background-color: var(--off-white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.15) 0%, rgba(200, 162, 77, 0.05) 100%);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(200, 162, 77, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 162, 77, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--olive);
    border: 2px solid var(--olive);
}

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

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

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

.btn-full {
    width: 100%;
}

.btn-calculate {
    margin-top: 10px;
}

.btn-submit {
    margin-top: 10px;
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 162, 77, 0.1);
    transition: var(--transition-normal);
    
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(200, 162, 77, 0.3);
}

.logo-image {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

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

.logo-main {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.navbar {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap:4px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    padding: 10px 16px;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
    background: rgba(200, 162, 77, 0.1);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-normal);
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 162, 77, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(85, 107, 47, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

/* Animated Gradient Blocks */
.hero-bg .gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-bg .orb-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.4) 0%, rgba(200, 162, 77, 0.1) 100%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-bg .orb-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.3) 0%, rgba(85, 107, 47, 0.1) 100%);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.hero-bg .orb-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.3) 0%, rgba(232, 213, 163, 0.1) 100%);
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

.hero-bg .orb-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.25) 0%, rgba(122, 154, 74, 0.1) 100%);
    top: 30%;
    left: 60%;
    animation-delay: -15s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

/* Animated Gradient Mesh */
.hero-bg .gradient-mesh {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 40% 20%, rgba(200, 162, 77, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(85, 107, 47, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(200, 162, 77, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(85, 107, 47, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(200, 162, 77, 0.12) 0px, transparent 50%);
    animation: mesh-move 15s ease-in-out infinite;
}

@keyframes mesh-move {
    0%, 100% {
        background-position: 0% 0%, 100% 0%, 0% 50%, 100% 50%, 0% 100%;
    }
    50% {
        background-position: 10% 10%, 90% 10%, 10% 60%, 90% 60%, 10% 90%;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-image {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--gold);
}

.image-placeholder i {
    font-size: 4rem;
    opacity: 0.5;
}

.image-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    color: var(--gold);
    font-size: 1.1rem;
}

.card-1 {
    top: 20%;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 10%;
    right: -20px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom:-20px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--off-white);
}

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

.about-image-wrapper {
    position: relative;
}

.image-box {
    background: var(--gradient-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.placeholder-image i {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.6;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-gold);
    color: var(--white);
    padding: 24px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.15) 0%, rgba(200, 162, 77, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(200, 162, 77, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(85, 107, 47, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(200, 162, 77, 0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 162, 77, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(200, 162, 77, 0.3);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--gold);
    font-size: 0.95rem;
}

.service-link:hover {
    gap: 12px;
}

.service-link i {
    transition: var(--transition-fast);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--off-white);
}

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

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--olive) 100%);
    border-radius: 2px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 10px;
    box-shadow: 0 8px 20px rgba(200, 162, 77, 0.4);
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(200, 162, 77, 0.2);
}

.step-icon i {
    font-size: 2rem;
    color: var(--gold);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-us {
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 90%, rgba(200, 162, 77, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(85, 107, 47, 0.08) 0%, transparent 40%);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.why-us-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(200, 162, 77, 0.1);
    position: relative;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 162, 77, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-normal);
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200, 162, 77, 0.3);
}

.why-us-card:hover .card-glow {
    opacity: 1;
}

.why-us-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.15) 0%, rgba(200, 162, 77, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
}

.why-us-icon i {
    font-size: 1.75rem;
    color: var(--gold);
}

.why-us-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.why-us-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ============================================
   EMI CALCULATOR SECTION
   ============================================ */
.emi-calculator {
    background: var(--off-white);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.input-group label i {
    color: var(--gold);
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    border: 2px solid rgba(200, 162, 77, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.1);
}

.input-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    color: var(--gold);
}

.input-group input[type="range"] {
    width: 100%;
    margin-top: 12px;
    -webkit-appearance: none;
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 3px;
    outline: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(200, 162, 77, 0.4);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(200, 162, 77, 0.4);
}

/* Calculator Result */
.calculator-result {
    display: flex;
    align-items: center;
}

.result-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(200, 162, 77, 0.2);
    width: 100%;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200, 162, 77, 0.2);
}

.result-header i {
    color: var(--gold);
    font-size: 1.25rem;
}

.result-header span {
    font-weight: 600;
    color: var(--text-dark);
}

.emi-display {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.1) 0%, rgba(200, 162, 77, 0.05) 100%);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.emi-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.emi-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.result-breakdown {
    margin-bottom: 24px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(200, 162, 77, 0.2);
}

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

.breakdown-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.breakdown-value {
    font-weight: 600;
    color: var(--text-dark);
}

.breakdown-value.interest {
    color: var(--olive);
}

.breakdown-item.total .breakdown-label,
.breakdown-item.total .breakdown-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid rgba(200, 162, 77, 0.1);
}

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

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Testimonial Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.nav-btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(200, 162, 77, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--off-white);
    position: relative;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 100%, rgba(200, 162, 77, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(85, 107, 47, 0.08) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

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

.contact-card {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.15) 0%, rgba(200, 162, 77, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
    color: #25d366;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-details a,
.contact-details p {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-details a:hover {
    color: var(--gold);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-top: 8px;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.social-links {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.social-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(200, 162, 77, 0.1) 0%, rgba(200, 162, 77, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.social-icon:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-form {
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(200, 162, 77, 0.2);
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(200, 162, 77, 0.2);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 162, 77, 0.1);
}

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

/* Map Section */
.map-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-lg);
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-light);
    box-shadow: var(--shadow-md);
    border: 2px dashed rgba(200, 162, 77, 0.3);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.5;
}

.map-placeholder span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.map-placeholder p {
    font-size: 0.9rem;
}

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

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

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.footer-brand .logo-image {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-brand .logo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.footer-brand .logo-main {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand .logo-sub {
    font-size: 0.65rem;
    color: var(--gold-light);
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

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

.footer-contact p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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


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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(200, 162, 77, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(200, 162, 77, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (991px and below) */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }
    
    /* Header */
    .hamburger {
        display: flex;
    }
    
    .navbar {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        transform: translateX(100%);
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .navbar.active {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 10px;
                width: 100%;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 15px 20px;
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-illustration {
        max-width: 400px;
    }
    
    .floating-card {
        display: none;
    }
    
    /* Sections Grid */
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-line {
        display: none;
    }
    
    /* Calculator */
    .calculator-container {
        grid-template-columns: 1fr;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Header */
    .header-inner {
        height: 70px;
    }
    
    .navbar {
        top: 57px;
        height: calc(100vh - 70px);
        align-items: self-start;
    }
    .nav-link{display: block; 
        text-align: left;
        border-bottom:1px #cccccc5e solid;
        border-radius: 0;
        padding: 4px 10px;
                font-size: 1rem;
       }
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    /* Hero */
    .hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
       
        gap: 5px;
    }
    
    .stat-item {
        align-items: center;
        width: 32%;
    }
    .map-placeholder p{text-align: center;}
    .hero-wave svg {
        height: 60px;
    }
    
    /* Animated Gradient Orbs Mobile */
    .hero-bg .orb-1 {
        width: 200px;
        height: 200px;
    }
    
    .hero-bg .orb-2 {
        width: 150px;
        height: 150px;
    }
    
    .hero-bg .orb-3 {
        width: 120px;
        height: 120px;
    }
    
    .hero-bg .orb-4 {
        width: 180px;
        height: 180px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-number {
        margin-bottom: 16px;
    }
    
    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    /* About */
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .experience-badge {
        right: 10px;
        bottom: -10px;
        padding: 16px 24px;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    /* Calculator */
    .calculator-form,
    .result-card {
        padding: 24px;
    }
    
    .emi-value {
        font-size: 2rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonial-nav {
        margin-top: 30px;
    }
    
    /* Contact */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Back to Top */
    .back-to-top {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
.nav-list li {
    width: 100%;
    text-align: left;
    display: block;
}

.nav-link:hover, .nav-link.active{
    background: transparent;
}

.header-inner { 
     height: 55px;}

.footer-contact p{
    justify-content: center;
}


}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .why-us-card {
        padding: 30px 24px;
    }
    
    .testimonial-card {
        padding: 30px 24px;
    }
}

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth hover transitions for cards */
.service-card,
.why-us-card,
.testimonial-card,
.contact-card {
    will-change: transform;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Selection color */
::selection {
    background: rgba(200, 162, 77, 0.3);
    color: var(--text-dark);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

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