/* ─── Albertus Nova — same font as stargoldcompany.com ─── */
@font-face {
    font-family: 'Albertus Nova';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/api/font') format('woff2'),
        url('https://db.onlinewebfonts.com/t/49ed4421e4a596a4664c3b9ad0189191.woff2') format('woff2'),
        url('https://stargoldcompany.com/static/media/AlbertusNova.0bf7d147635c4aa6bc69.woff2') format('woff2'),
        url('https://stargoldcompany.com/static/media/AlbertusNova.7df54f8ffb7c107cd8c1.woff') format('woff');
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ═══ PRIMARY: Polished Silver & Platinum ═══ */
    --primary-color: #7A8FA6;
    /* Cool Steel Silver — brand identity */
    --primary-dark: #4E6278;
    /* Deep Slate Silver */
    --primary-light: #B8C5D0;
    /* Pale Platinum */

    /* ═══ ACCENT: Warm Champagne Gold ═══ */
    --accent-color: #C9A84C;
    /* Warm Gold — CTAs & highlights */
    --accent-light: #E8C97A;
    /* Champagne Gold */
    --accent-dark: #9A7A30;
    /* Antique Deep Gold */

    /* ═══ BACKGROUNDS ═══ */
    --bg-white: #FFFFFF;
    --bg-light: #F2F4F7;
    /* Platinum Mist — light sections */
    --bg-silver: #E8ECF0;
    /* Cool Silver Surface */
    --bg-dark: #0F1117;
    /* Deep Charcoal — premium dark */
    --bg-dark-2: #171C26;
    /* Midnight Navy-Charcoal */

    /* ═══ TEXT ═══ */
    --text-dark: #1A1E28;
    /* Near-black — max readability */
    --text-medium: #3A4255;
    /* Dark Slate */
    --text-light: #5E6A7A;
    /* Mid Silver-Gray */
    --text-muted: #94A3B8;
    /* Muted Slate */
    --text-silver: #8fa5bc;
    /* Silver-tinted white for dark bgs */

    /* ═══ BORDERS ═══ */
    --border-color: #CDD2DA;
    /* Subtle silver border */
    --border-silver: #A8B4C0;
    /* Stronger silver border */
    --border-gold: #C9A84C;
    /* Gold accent border */

    /* ═══ GRADIENTS ═══ */
    /* Real polished silver shimmer */
    --gradient-silver: linear-gradient(120deg,
            #5E7287 0%, #8FA0B0 20%,
            #D4DCE5 45%, #FFFFFF 50%,
            #D4DCE5 55%, #8FA0B0 80%,
            #5E7287 100%);
    /* Hero: deep charcoal with blue-silver depth */
    --gradient-hero: linear-gradient(135deg,
            #0A0D14 0%, #111827 30%,
            #0D1520 60%, #0A0D14 100%);
    /* Gold CTA buttons */
    --gradient-gold: linear-gradient(135deg,
            #9A7A30 0%, #C9A84C 45%,
            #E8C97A 70%, #C9A84C 100%);
    /* Light section cards */
    --gradient-card: linear-gradient(145deg, #FFFFFF 0%, #F2F4F7 100%);
    /* Silver section backgrounds */
    --gradient-section: linear-gradient(180deg, #F2F4F7 0%, #E8ECF0 100%);
    /* Dark footer */
    --gradient-footer: linear-gradient(135deg, #0A0D14 0%, #171C26 100%);
    /* Step numbers / process */
    --gradient-primary: linear-gradient(135deg, #4E6278, #7A8FA6);
    --gradient-secondary: linear-gradient(135deg, #94A3B8, #C2CDD9);
    --gradient-accent: linear-gradient(135deg, #9A7A30 0%, #C9A84C 50%, #E8C97A 100%);
    --gradient-trust: linear-gradient(135deg, #3A4255, #4E6278);

    /* ═══ SHADOWS ═══ */
    --shadow-light: 0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-medium: 0 6px 24px rgba(0, 0, 0, 0.11);
    --shadow-heavy: 0 14px 42px rgba(0, 0, 0, 0.18);
    --shadow-silver: 0 0 28px rgba(122, 143, 166, 0.28);
    --shadow-gold: 0 0 28px rgba(201, 168, 76, 0.32);
    /* Legacy aliases kept for compatibility */
    --secondary-color: #5E6A7A;
    --silver-light: #C2CDD9;
    --silver-medium: #7A8FA6;
    --shadow-trust: 0 0 20px rgba(201, 168, 76, 0.28);
    --shadow-blue: 0 0 20px rgba(122, 143, 166, 0.28);
}

body {
    font-family: 'Albertus Nova', 'EB Garamond', 'Playfair Display', Georgia, serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

/* Force Albertus Nova on ALL elements, including inputs/buttons/selects */
input,
button,
select,
textarea,
optgroup {
    font-family: inherit;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-light);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    color: var(--primary-color);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    filter: brightness(1) contrast(1.1);
    transition: all 0.3s ease;
}

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

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.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 {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium), var(--shadow-trust);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-trust);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(201, 168, 76, 0.14) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 15%, rgba(184, 197, 208, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 55% 95%, rgba(122, 143, 166, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 75% 55%, rgba(255, 255, 255, 0.03) 0%, transparent 30%),
        radial-gradient(ellipse at 25% 20%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
    animation: heroFloat 22s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(20px, -20px) rotate(1deg);
    }

    66% {
        transform: translate(-20px, 10px) rotate(-1deg);
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,
            #C2CDD9 0%,
            #E8ECF0 25%,
            #FFFFFF 50%,
            #E8ECF0 70%,
            #C9A84C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 3px 16px rgba(201, 168, 76, 0.35));
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(194, 205, 217, 0.90);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
    letter-spacing: 0.04em;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    /* max-width: 100%; */
    width: 300px;
    height: 300px;
    /* border-radius: 15px; */
    /* box-shadow: var(--shadow-heavy), 0 0 40px rgba(201, 168, 76, 0.20), 0 0 80px rgba(122, 143, 166, 0.15); */
    animation: float 3s ease-in-out infinite;
    /* border: 1px solid rgba(201, 168, 76, 0.25); */
}

.silver-icon {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), #A8A8A8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-heavy);
    animation: float 3s ease-in-out infinite;
}

.silver-icon i {
    font-size: 8rem;
    color: var(--bg-white);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Trust Indicators */
.trust-indicators {
    padding: 4rem 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, rgba(122, 143, 166, 0.03) 0%, transparent 50%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: white;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(16, 185, 129, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium), var(--shadow-trust);
    border-color: var(--accent-color);
}

.trust-item i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.1);
}

.trust-item h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.8rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section - With Image on Right Side */
.about-content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-content-left {
    text-align: left;
}

.about-text-centered {
    margin-bottom: 3rem;
    text-align: left;
}

.about-text-centered p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: left;
}

.about-values-centered {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-image-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 100px;
}

.about-shop-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-shop-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy);
}

/* About Section - Centered Professional Layout */
.about-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text-centered {
    margin-bottom: 3rem;
}

.about-text-centered p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-values-centered {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.about-values-centered .value-item {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
}

.about-values-centered .value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(245, 158, 11, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-values-centered .value-item:hover::before {
    opacity: 1;
}

.about-values-centered .value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium), var(--shadow-trust);
    border-color: var(--accent-color);
}

.about-values-centered .value-item i {
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.about-values-centered .value-item:hover i {
    transform: scale(1.1);
}

.about-values-centered .value-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-values-centered .value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.value-item i {
    font-size: 2.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* What We Buy Section */
.what-we-buy {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.buy-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: var(--bg-light);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.buy-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

.buy-item:hover .buy-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium), var(--shadow-trust);
}

.buy-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.buy-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-silver) 100%);
    position: relative;
    overflow: hidden;
}

.process::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(122,143,166,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.process .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease;
}

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

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 143, 166, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpCard 0.6s ease forwards;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.process-number {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-number span {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-card:hover .process-number span {
    background: var(--accent-color);
    transform: scale(1.1);
}

.process-line {
    position: absolute;
    top: 50%;
    left: 50%;
    /* width: 100%; */
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 10%, 
        var(--primary-color) 90%, 
        transparent 100%);
    z-index: 1;
    transform: translateY(-50%);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(122, 143, 166, 0.2);
}

.process-card:not(:last-child) .process-line::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary-color);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    filter: drop-shadow(0 0 4px rgba(122, 143, 166, 0.3));
}

.process-card:last-child .process-line {
    display: none;
}

.process-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-content p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Professional UI Enhancements */
.process-card {
    background: linear-gradient(145deg, var(--bg-white) 0%, var(--bg-light) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(122, 143, 166, 0.1);
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.process-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(122, 143, 166, 0.15), 
                0 0 0 1px rgba(122, 143, 166, 0.1),
                var(--shadow-blue);
}

.process-number span {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(122, 143, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.process-number span::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.process-card:hover .process-number span::after {
    animation: shimmer 0.5s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.process-card:hover .process-number span {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.process-content h3 {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.process-card:hover .process-content h3 {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    margin-left: 60px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-trust);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    position: absolute;
    left: -30px;
    z-index: 1;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    border: 2px solid var(--primary-color);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow-medium), var(--shadow-blue);
}

.step-content {
    flex: 1;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    margin-left: 1rem;
}

.step-content h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* Silver Rate Section */
.silver-rate {
    padding: 5rem 0;
    background: var(--bg-white);
}

.rate-card {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: linear-gradient(145deg, #FFFFFF 0%, #F8F9FB 100%);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    color: var(--text-dark);
    box-shadow: var(--shadow-medium), var(--shadow-gold);
    position: relative;
    overflow: hidden;
    border: 2px solid;
    border-image: linear-gradient(135deg, #C9A84C, #E8ECF0, #C9A84C) 1;
}

.rate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(201, 168, 76, 0.06) 45%,
            rgba(255, 255, 255, 0.20) 50%,
            rgba(184, 197, 208, 0.06) 55%,
            transparent 65%);
    animation: slideShimmer 4s ease-in-out infinite;
}

@keyframes slideShimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.rate-amount {
    margin-bottom: 2rem;
}

.rate-label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rate-price {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.rate-date {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.rate-info {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: left;
}

.rate-info h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.rate-info ul {
    list-style: none;
}

.rate-info li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.rate-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.rate-note {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.rate-note i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Live Rate Badge */
.rate-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #064e3b, #065f46);
    color: #4ade80;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(74, 222, 128, 0.25);
    box-shadow: 0 0 12px rgba(74, 222, 128, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.live-dot {
    width: 7px;
    height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: livePulse 1.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.15);
        box-shadow: 0 0 0 4px rgba(74, 222, 128, 0);
    }
}

/* Rate change indicator */
.rate-change {
    display: block;
    min-height: 1.4rem;
    margin-bottom: 0.2rem;
}

/* ═══════════════════════════════
   BRANCHES SECTION
   ═══════════════════════════════ */
.branches-section {
    padding: 5rem 0;
    background: var(--bg-white);
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
}

/* Heading override for Branches */
.branches-section .section-header h2 {
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

/* Grid layout — 3 columns on desktop */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Individual branch card */
.branch-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium), var(--shadow-gold);
    border-color: rgba(201, 168, 76, 0.4);
}

/* Icon banner (replaces photo on gold site) */
.branch-icon-wrap {
    height: 170px;
    background: linear-gradient(135deg, #0A0D14 0%, #1A2333 60%, #0D1520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 900px) {
    .branch-icon-wrap {
        height: 190px;
    }
}

@media (max-width: 600px) {
    .branch-icon-wrap {
        height: 220px;
    }
}

.branch-icon-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
}

 .branch-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     position: relative;
     z-index: 0;
 }

.branch-icon-wrap i {
    font-size: 2.8rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 12px rgba(201, 168, 76, 0.4));
}

/* Card body */
.branch-body {
    padding: 1.4rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.branch-name {
    font-family: 'EB Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.branch-landmark {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.75rem;
}

.branch-address {
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.2rem;
}

 .branch-map {
     width: 100%;
     border-radius: 12px;
     overflow: hidden;
     border: 1px solid rgba(205, 210, 218, 0.9);
     box-shadow: 0 6px 14px rgba(15, 17, 23, 0.08);
     margin-bottom: 1rem;
 }

 .branch-map iframe {
     display: block;
     width: 100%;
     height: 160px;
 }

/* Get Directions button */
.branch-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-gold);
    color: #4f1e00;
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 50px;
    border: none;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
}

.branch-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.45);
    color: #4f1e00;
    text-decoration: none;
}

/* Pagination controls row */
.branches-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Arrow buttons — inline, not absolute */
.branch-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: var(--bg-dark);
    color: var(--accent-light);
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.branch-arrow:hover {
    background: var(--gradient-gold);
    color: #4f1e00;
    border-color: transparent;
    transform: scale(1.08);
}

.branch-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* Dot pagination */
.branch-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.8rem;
}

.branch-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, width 0.3s ease;
    border: none;
    padding: 0;
}

.branch-dot.active {
    background: var(--accent-color);
    width: 22px;
    border-radius: 4px;
    transform: none;
}

/* Why Choose Section */
.why-choose {

    padding: 5rem 0;
    background: var(--bg-light);
}

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

.choose-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.choose-item i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.choose-item:hover i {
    transform: scale(1.1);
}

.choose-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Customer Trust Section */
.customer-trust {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid;
    border-image: var(--gradient-primary) 1;
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
    color: var(--text-dark);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.5rem;
    min-width: 30px;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
}

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

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

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--gradient-footer);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(201, 168, 76, 0.20);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-section a:hover {
    color: var(--accent-light);
    transform: translateX(5px);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-section a:hover::after {
    width: 100%;
}

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

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-trust);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-spinner.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner-logo {
    width: 80px;
    height: 80px;
    position: relative;
    animation: logoSpin 2s linear infinite;
    margin-bottom: 1rem;
}

.loading-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spinner-text {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 500;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

/* ═══ Gallery Section ════════════════════════════════════ */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto;
    gap: 1rem;
    border-radius: 16px;
    overflow: hidden;
}

.gallery-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item.gallery-large {
    aspect-ratio: unset;
    min-height: 380px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 13, 20, 0.72) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem 1.4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Footer brand row — logo + company name side by side */
.footer-brand-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
}

.footer-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    flex-shrink: 0;
}

.footer-map-section iframe {
    margin-top: 0.5rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content-left {
        text-align: center;
    }

    .about-text-centered {
        text-align: center;
    }

    .about-text-centered p {
        text-align: center;
    }

    .about-values-centered {
        justify-content: center;
    }

    .about-image-right {
        position: static;
        order: -1;
    }

    .about-shop-img {
        max-width: 250px;
    }

    .hero-cta {
        justify-content: center;
    }

    .silver-icon {
        width: 200px;
        height: 200px;
    }

    .silver-icon i {
        font-size: 5rem;
    }

    .hero-img {
        max-width: 80%;
        margin: 0 auto;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        flex-direction: row !important;
        margin-left: 40px;
    }

    .step-number {
        left: -20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Process Cards Responsive */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .process-card {
        padding: 1.5rem;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .process-number {
        flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 0;
    }

    .process-number span {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .process-line {
        display: none;
    }

    /* Show vertical connecting lines on mobile */
    .process-card:not(:last-child) {
        position: relative;
    }

    .process-card:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 25px;
        top: 100%;
        width: 3px;
        height: 1.5rem;
        background: linear-gradient(180deg, 
            var(--primary-color) 0%, 
            rgba(122, 143, 166, 0.3) 100%);
        border-radius: 2px;
        box-shadow: 0 2px 4px rgba(122, 143, 166, 0.15);
    }

    .process-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .process-content p {
        font-size: 0.9rem;
    }

    .trust-grid,
    .buy-grid,
    .choose-grid,
    .testimonials {
        grid-template-columns: 1fr;
    }

    /* Branch Cards Responsive */
    .branches-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .branch-card {
        border-radius: 12px;
    }

    .branch-icon-wrap {
        height: 180px;
    }

    .branch-body {
        padding: 1.2rem 1.3rem 1.3rem;
    }

    .branch-name {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .branch-landmark {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }

    .branch-address {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .branch-btn {
        font-size: 0.75rem;
        padding: 7px 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.5rem;
    }
}

/* Tablet Responsive Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-card {
        padding: 1.5rem;
    }
    
    .process-number span {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .process-content h3 {
        font-size: 1.15rem;
    }
    
    .process-content p {
        font-size: 0.9rem;
    }

    /* Branch Cards Tablet */
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .branch-icon-wrap {
        height: 160px;
    }

    .branch-body {
        padding: 1.3rem 1.4rem 1.4rem;
    }

    .branch-name {
        font-size: 1.15rem;
    }

    .branch-address {
        font-size: 0.82rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Process Cards Small Mobile */
    .process-grid {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .process-card {
        padding: 1rem;
        gap: 1rem;
        border-radius: 12px;
    }

    .process-number span {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .process-content h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .process-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Branch Cards Small Mobile */
    .branches-grid {
        gap: 1.2rem;
    }

    .branch-card {
        border-radius: 10px;
    }

    .branch-icon-wrap {
        height: 160px;
    }

    .branch-body {
        padding: 1rem 1.1rem 1.1rem;
    }

    .branch-name {
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }

    .branch-landmark {
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .branch-address {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .branch-btn {
        font-size: 0.7rem;
        padding: 6px 14px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .rate-card {
        margin: 0 1rem 2rem;
    }

    .step-content {
        margin: 0 1rem 0 3rem;
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid var(--primary-light);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.popup-close:hover {
    background: var(--accent-color);
    color: var(--bg-white);
    transform: rotate(90deg);
}

.popup-content h2 {
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-form .form-group {
    margin-bottom: 1.5rem;
}

.popup-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.popup-form input,
.popup-form select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s ease;
}

.popup-form input:focus,
.popup-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(122, 143, 166, 0.1);
}

.popup-form input::placeholder {
    color: var(--text-muted);
}

.popup-submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-gold);
    color: #4f1e00;
    border: none;
    border-radius: 8px;
    font-family: 'Albertus Nova', 'EB Garamond', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
    opacity: 0.9;
}

/* Popup Responsive */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem;
        max-width: 95%;
        margin: 1rem;
    }
    
    .popup-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    .popup-form .form-group {
        margin-bottom: 1.2rem;
    }
    
    .popup-form input,
    .popup-form select {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .popup-submit-btn {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .popup-content h2 {
        font-size: 1.3rem;
    }
    
    .popup-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        top: 0.8rem;
        right: 0.8rem;
    }
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}
.process-image {
    width: 100%;
    height: auto;
    margin: 2rem 0;
}
