/* ===========================================
   Velu's Chakrawarthy Jewellers - Premium South Indian Jewellery
   Luxury Single-Page Website Styles
   =========================================== */

   :root {
    /* Gold Theme Colors */
    --gold-primary: #d4af37;
    --gold-secondary: #b8860b;
    --gold-light: #f4e87c;
    --gold-dark: #8b6914;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #b8860b 50%, #daa520 100%);

    /* Base Colors */
    --black: #000000;
    --black-light: #1a1a1a;
    --black-medium: #2d2d2d;
    --white: #ffffff;
    --ivory: #fffff0;
    --gray-light: #f8f9fa;
    --gray-medium: #6c757d;

    /* Typography */
    --font-primary: 'Crimson Text', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Shadows and Effects */
    --shadow-light: 0 4px 20px rgba(212, 175, 55, 0.1);
    --shadow-medium: 0 8px 32px rgba(212, 175, 55, 0.2);
    --shadow-dark: 0 16px 64px rgba(212, 175, 55, 0.3);
    --glow-gold: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
    background-color: var(--ivory);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    font-weight: 400;
}

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

/* ===== GOLD DIVIDER ===== */
.gold-divider {
    width: 100px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 1rem auto 2rem;
    border-radius: 2px;
    position: relative;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gold-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25px;
    width: 25px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-primary));
}

.gold-divider::after {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 25px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}
/* ===== TOP BAR CONTENT ===== */
.top-bar {
    height: 40px;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
}

.top-bar-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

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

/* Left - phone */
/* ===== TOP BAR FIX ===== */
.top-bar {
    background: transparent;   /* no black */
    padding: 6px 0;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

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

/* Left phone */
.top-left {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.top-left a {
     color: var(--white);
    text-decoration: none;
    margin-right: 12px;
}
.top-left i {
    color: var(--white);
    transform: scaleX(-1);
}

.navbar {
    padding: 1rem 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: 150px;
    display: block;
    justify-content: center;
    /* filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6)); */
}

.footer-logo{
    height: 110px;
    width: 150px; 
    display: block;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
}

.logo-text .gold-text {
    color: var(--gold-primary);
}

/* Top empty space */
.top-bar {
    height: 40px;
    background: var(--gold-gradient);

}

/* Logo center section */
.logo-section {
    background-color: var(--white);
    display: flex;
    justify-content: center;   /* HORIZONTAL CENTER */
    align-items: center;
    padding: 15px 0;
    gap:10px;
}

.logo-image {
    height: 90px;
    width: auto;               /* keep proportions */
    display: block;
}

/* Navbar below logo */
.main-navbar {
    background-color: #000;
    border-top: 1px solid #b08d2d;
}

.navbar-nav .nav-link {
    color: #fff;
    padding: 1px 22px;
    font-weight: 500;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #d4af37;
    /* border-bottom: 2px solid #d4af37; */
}

.border-gold {
    border-color: #d4af37;
}

.navbar-toggler {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28212, 175, 55, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    font-size: 1rem;
    margin: 0 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--gold-primary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* ===== HERO BACKGROUND SLIDER ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Carousel wrapper */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

/* Each slide */
.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Dark overlay (already used by you) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Gold particles overlay */
.gold-sparkle-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

/* Hero content always on top */
.hero-content,
.scroll-indicator {
    position: relative;
    z-index: 3;
}


/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.3;
}

.gold-sparkle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    animation: sparkle 8s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 250px;
}
/* ===== HERO VIDEO BACKGROUND ===== */
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-title {
    font-size: 4.5rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
    line-height: 1.8;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.btn-primary-gold {
    background: var(--gold-gradient);
    border: none;
    color: var(--black);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #daa520 100%);
    color: var(--black);
}

.btn-outline-gold {
    /* border: 3px solid var(--gold-primary); */
    color: black;
    /* border: 2px solid black; */
    background:var(--gold-gradient);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-gold:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #daa520 100%);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-item i {
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    color: var(--gold-primary);
    font-size: 2.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--gold-light);
    transform: scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--ivory);
    padding: 80px 0;
}

.trust-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
    min-height:307px;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--black);
    font-size: 2rem;
    box-shadow: var(--glow-gold);
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.trust-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.trust-text {
    color: var(--gray-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white);
    padding: 100px 0;
}

.about-content {
    padding-right: 3rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--black-medium);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: scale(1.02);
}

.image-frame img {
    transition: transform 0.3s ease;
}

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

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold-gradient);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    border: 5px solid var(--white);
}

.badge-content {
    text-align: center;
    color: var(--black);
}

.badge-content .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.badge-content .text {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== COLLECTION SECTION ===== */
.collection-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-primary);
    margin: 3rem 0 2rem;
    text-align: center;
    position: relative;
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    min-height:420px
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(212, 175, 55, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.btn-gold-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.shine-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: -100%; }
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-title {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ===== NEW ARRIVALS SECTION ===== */
.new-arrivals-section {
    background: var(--white);
    padding: 100px 0;
}

.new-arrival-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.new-arrival-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.arrival-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.arrival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.new-arrival-card:hover .arrival-image img {
    transform: scale(1.05);
}

.shine-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), transparent);
    animation: shineSweep 4s infinite;
}

@keyframes shineSweep {
    0% { left: -100%; }
    50% { left: 50%; }
    100% { left: 100%; }
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-gradient);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-gold);
}

.arrival-info {
    padding: 1.5rem;
    text-align: center;
}

.arrival-title {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.arrival-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-section {
    background: var(--ivory);
    padding: 100px 0;
}

.why-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-light);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }
.why-card:nth-child(4) { animation-delay: 0.4s; }
.why-card:nth-child(5) { animation-delay: 0.5s; }
.why-card:nth-child(6) { animation-delay: 0.6s; }

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

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--black);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    box-shadow: var(--glow-gold);
}

.why-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.why-text {
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: var(--white);
    padding: 100px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.stars {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-content {
    margin-bottom: 2rem;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--black);
}

.author-title {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gold-gradient);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.1)"/><circle cx="20" cy="30" r="1" fill="rgba(0,0,0,0.08)"/><circle cx="80" cy="70" r="1.5" fill="rgba(0,0,0,0.06)"/></svg>');
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.7;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

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

.btn-success-whatsapp {
    background: #25d366;
    border: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-success-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--gray-light);
    padding: 100px 0;
}

.contact-info {
    padding-right: 3rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--black-medium);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    color: var(--gold-primary);
    font-size: 1.8rem;
    min-width: 35px;
    margin-top: 0.2rem;
}

.contact-item h5 {
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--black-medium);
}

.map-container {
    margin-top: 2rem;
}

.map-placeholder {
    background: var(--white);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--gray-medium);
    font-size: 1.1rem;
    margin: 0;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.gold-input {
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--ivory);
}

.gold-input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: var(--white);
}

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

.footer-brand {
    margin-bottom: 2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-title {
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--glow-gold);
}

.footer-divider {
    border-color: rgba(212, 175, 55, 0.3);
    margin: 40px 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

.animate-fade-in {
    animation: fadeInUp 1s ease-out forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .about-content { padding-right: 0; }
    .contact-info { padding-right: 0; margin-bottom: 3rem; }
    .about-stats { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .hero-features { flex-direction: column; gap: 1rem; align-items: center; }
    .trust-card, .why-card { margin-bottom: 2rem; }
    .cta-buttons { flex-direction: column; gap: 1rem; }
    .btn-primary-gold, .btn-outline-gold, .btn-success-whatsapp { width: 100%; }
    .contact-form-container { padding: 2rem; }
    .testimonial-author { flex-direction: column; text-align: center; gap: 1rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-description { font-size: 1.1rem; }
    .navbar-nav .nav-link { margin: 0 0.5rem; }
    .logo-text { font-size: 1.5rem; }
    .trust-card, .why-card { padding: 2rem 1.5rem; }
    .social-links { justify-content: center; }
    .footer-bottom-links { justify-content: center; margin-top: 1rem; }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}
/* =====================================
   FORCE MOBILE SIZE FOR HERO BUTTONS
   ===================================== */
/* =====================================
   FINAL MOBILE HERO BUTTON FIX
   ===================================== */
@media (max-width: 576px) {

    /* Override earlier 768px width:100% rule */
    .hero-section .hero-buttons a.btn {
        width: auto !important;
        max-width: 240px !important;

        padding: 6px 14px !important;
        font-size: 0.8rem !important;
        line-height: 1.1 !important;

        border-radius: 20px !important;
    }

    .hero-section .hero-buttons a.btn i {
        font-size: 0.75rem !important;
        margin-right: 6px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 10px !important;
    }
}
@media (max-width: 768px) {
    .hero-video {
        display: none;
    }

    .hero-slide {
        display: block;
        background-image: url('images/mobile-hero.jpg');
    }
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: #fff;
    position: fixed;
    bottom: 100px;
    right: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 35px;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgb(0 0 0 / .1);
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    max-width: 350px; 
    margin-right: 20px;
    min-height: 303px !important;
}
.stars i {
    color: #f5b400;
}

.testimonial-text {
    font-size: 15px;
    margin: 15px 0;
}

.imagetext--image_text {
    position: relative;
    padding: 8rem 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
}
.stack__heading {
    letter-spacing: .2em;
    color: var(--white);
    margin-top: 0;
    margin-bottom: .4em;
    font-family: Montserrat, sans-serif;
}

@media only screen and (min-width: 750px) and (max-width: 989px) {
    .stack__heading {
        font-size: 28px;
        font-size: 2.8rem;
    }
    .top-bar{  display:none}
}

.imagetext__paragraph {
    margin: 1rem 0 3rem;
}

.imagetext--image_text:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0009;
}

.page-width {
    max-width: 1200px;
    padding: 0 30px;
    margin: 0 auto;
}

.imagetext__content--center {
    max-width: 80rem;
    margin: 0 auto;
    text-align: center;
}

.imagetext__content {
    position: relative;
    z-index: 1;
}

.logo-text {
  text-align: center;
  color: #000;
}

.logo-text h1 {
  font-size: 56px;
  font-weight: bold;
  letter-spacing: 4px;
  margin: 0;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.divider h2 {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 6px;
  margin: 0 15px;
}

.divider span {
  width: 60px;
  height: 1px;
   background: linear-gradient(to right, #b8860b, #ffd700, #b8860b);
}

/* Right social icons */
.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* EXACT footer icon style */
.top-right a {
    width: 30px;
    height: 30px;
    border: 2px solid  var(--white); /* footer gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  var(--white);
    font-size: 18px;

    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
}

/* Hover effect same as footer */
.top-right a:hover {
    background: white;
    color: #000;
}

@media (max-width: 768px) {
    iframe{width:210px;}
    .top-bar{  display:none}
    .stack__heading {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.2;
    }
    .logo-image{height:60px}
    .divider span{width:16px}
    .logo-text h1{font-size:12px}
    .divider h2{font-size:6px}
}