/* filepath: c:\Users\sarbajit paul\OneDrive\Desktop\basant\styles.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #666;
    --white: #ffffff;
    --silver: #C0C0C0;
    --success: #25D366;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Bengali Text */
.bengali-text {
    font-family: 'Hind Siliguri', 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-nav {
    padding: 0.5rem 1.5rem;
    background: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0 50px;
    overflow: hidden;
}

.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.85) 100%);
    z-index: 1;
}

.hero::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 1440 320"><path fill="%23D4AF37" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,112C1248,107,1344,117,1392,122.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.6s both;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.8s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1rem;
}

.hero-feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.hero-cta {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 1s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.6s ease 1.2s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.btn-primary:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: var(--success);
    color: var(--white);
}

.btn-success:hover {
    background: #1eaa52;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero-scroll i {
    font-size: 2rem;
    color: var(--primary-gold);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Stats Section */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Section Styling */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon-wrapper i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: var(--white);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-left {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    position: relative;
}

.image-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: block;
}

.image-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.image-grid img:nth-child(1) {
    animation: fadeInUp 0.6s ease 0.2s both;
}

.image-grid img:nth-child(2) {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.image-grid img:nth-child(3) {
    animation: fadeInUp 0.6s ease 0.6s both;
}

.image-grid img:nth-child(4) {
    animation: fadeInUp 0.6s ease 0.8s both;
}

.why-choose-right {
    padding: 2rem 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item div {
    flex: 1;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    background: var(--light-bg);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 200px;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.process-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-card p {
    color: var(--text-light);
}

.process-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
}

/* Gold Types Section */
.gold-types-section {
    background: var(--white);
}

.gold-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gold-type-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gold-type-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gold-type-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.gold-type-card:hover img {
    transform: scale(1.1);
}

.gold-type-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1.5rem 1rem 0.5rem;
    text-align: center;
}

.gold-type-card p {
    color: var(--text-light);
    padding: 0 1rem 1.5rem;
    text-align: center;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Trust Section */
.trust-section {
    background: var(--dark-bg);
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-badge {
    text-align: center;
    color: var(--white);
}

.trust-badge i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.trust-badge h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-badge p {
    color: rgba(255,255,255,0.7);
}

/* Gallery Preview Section */
.gallery-preview-section {
    background: var(--white);
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.gallery-cta {
    text-align: center;
}

.btn-outline {
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    background: transparent;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 2rem;
}

.cta-buttons-large {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--dark-bg);
}

.btn-white:hover {
    background: var(--light-bg);
}

.btn-success-large {
    background: var(--success);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.btn-success-large:hover {
    background: #1eaa52;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* FAQ Section */
.faq-section {
    background: var(--light-bg);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-column h3,
.footer-column h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--primary-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-gold);
}

.contact-info span {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    color: rgba(255,255,255,0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 5rem 0;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 1.5rem 0 2rem;
    line-height: 1.8;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-gold);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-right {
    position: relative;
}

.contact-cta-card {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--secondary-gold) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-cta-card i.fa-headset {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-cta-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.contact-cta-card p {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.btn-contact-primary,
.btn-contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    min-height: 60px;
    justify-content: center;
}

.btn-contact-primary {
    background: var(--dark-bg);
    color: var(--white);
}

.btn-contact-primary:hover {
    background: #000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-contact-whatsapp {
    background: var(--success);
    color: var(--white);
}

.btn-contact-whatsapp:hover {
    background: #1eaa52;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-contact-primary i,
.btn-contact-whatsapp i {
    font-size: 2rem;
}

.btn-contact-primary div,
.btn-contact-whatsapp div {
    text-align: left;
}

.btn-contact-primary span,
.btn-contact-whatsapp span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-contact-primary small,
.btn-contact-whatsapp small {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255,255,255,0.3);
}

.contact-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--dark-bg);
    font-weight: 500;
}

.contact-feature-item i {
    color: var(--dark-bg);
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        display: none;
    }
    
    /* Stats Section Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-card i {
        font-size: 2.5rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    /* Contact Section Tablet Responsive */
    .contact-content-wrapper {
        gap: 3rem;
    }
    
    .contact-left h2 {
        font-size: 2.2rem;
    }
    
    .contact-cta-card {
        padding: 2.5rem;
    }
    
    .contact-cta-card h3 {
        font-size: 1.8rem;
    }
    
    /* Footer Tablet */
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        padding: 2rem;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .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(7px, -6px);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .services-grid,
    .gold-types-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Stats Section Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    .stat-card p {
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    .process-grid {
        flex-direction: column;
    }
    
    /* Contact Section Responsive */
    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-left h2 {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
        margin: 1rem 0 1.5rem;
    }
    
    .contact-info-cards {
        gap: 1rem;
    }
    
    .contact-info-card {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .contact-info-card i {
        font-size: 1.5rem;
    }
    
    .contact-info-card h4 {
        font-size: 1rem;
    }
    
    .contact-cta-card {
        padding: 2rem;
    }
    
    .contact-cta-card i.fa-headset {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .contact-cta-card h3 {
        font-size: 1.5rem;
    }
    
    .contact-cta-card p {
        font-size: 1rem;
    }
    
    .btn-contact-primary,
    .btn-contact-whatsapp {
        padding: 1rem 1.5rem;
    }
    
    .btn-contact-primary span,
    .btn-contact-whatsapp span {
        font-size: 1rem;
    }
    
    .btn-contact-primary small,
    .btn-contact-whatsapp small {
        font-size: 0.85rem;
    }
    
    /* Footer & Contact Info Responsive */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        height: 45px;
    }
    
    .footer-column h3,
    .footer-column h4 {
        font-size: 1.2rem;
    }
    
    .footer-column p {
        font-size: 0.95rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    /* Stats Section Extra Small Mobile */
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-card i {
        font-size: 2.5rem;
    }
    
    .stat-card h3 {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    
    .stat-card p {
        font-size: 0.95rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 80px;
        right: 20px;
    }
    
    /* Contact Section Mobile Responsive */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content-wrapper {
        gap: 2rem;
    }
    
    .contact-left h2 {
        font-size: 1.5rem;
    }
    
    .contact-description {
        font-size: 0.9rem;
    }
    
    .contact-info-card {
        padding: 1rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-card i {
        font-size: 1.8rem;
    }
    
    .contact-info-card h4 {
        font-size: 0.95rem;
    }
    
    .contact-info-card a,
    .contact-info-card p {
        font-size: 0.85rem;
    }
    
    .contact-cta-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .contact-cta-card i.fa-headset {
        font-size: 2.5rem;
    }
    
    .contact-cta-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-cta-card p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-buttons {
        gap: 0.8rem;
        margin: 1.5rem 0;
    }
    
    .btn-contact-primary,
    .btn-contact-whatsapp {
        padding: 0.9rem 1.2rem;
        gap: 0.8rem;
        flex-direction: column;
        text-align: center;
    }
    
    .btn-contact-primary i,
    .btn-contact-whatsapp i {
        font-size: 1.5rem;
    }
    
    .btn-contact-primary div,
    .btn-contact-whatsapp div {
        text-align: center;
    }
    
    .btn-contact-primary span,
    .btn-contact-whatsapp span {
        font-size: 0.95rem;
    }
    
    .btn-contact-primary small,
    .btn-contact-whatsapp small {
        font-size: 0.8rem;
    }
    
    .contact-features {
        gap: 0.8rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .contact-feature-item {
        gap: 0.6rem;
        font-size: 0.9rem;
    }
    
    .contact-feature-item i {
        font-size: 1rem;
    }
    
    /* Footer & Contact Info Mobile */
    .footer {
        padding: 2.5rem 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        height: 40px;
        margin: 0 auto 0.8rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-column p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-column ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-column ul li a {
        font-size: 0.9rem;
    }
    
    .contact-info li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-info i {
        font-size: 1.5rem;
        margin-top: 0;
    }
    
    .contact-info a {
        font-size: 0.9rem;
        word-break: break-all;
        padding: 0.5rem 0;
        display: inline-block;
    }
    
    .contact-info span {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-links a {
        width: 38px;
        height: 38px;
    }
    
    .footer-bottom {
        padding: 1.2rem 0;
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

/* Extra Small Mobile - 375px and below */
@media (max-width: 375px) {
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-content-wrapper {
        gap: 1.5rem;
    }
    
    .contact-left h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .contact-cta-card {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .contact-cta-card i.fa-headset {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-cta-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-cta-card p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }
    
    .contact-buttons {
        gap: 0.7rem;
        margin: 1.2rem 0;
    }
    
    .btn-contact-primary,
    .btn-contact-whatsapp {
        padding: 0.8rem 1rem;
        gap: 0.6rem;
        border-radius: 40px;
    }
    
    .btn-contact-primary i,
    .btn-contact-whatsapp i {
        font-size: 1.3rem;
    }
    
    .btn-contact-primary span,
    .btn-contact-whatsapp span {
        font-size: 0.9rem;
    }
    
    .btn-contact-primary small,
    .btn-contact-whatsapp small {
        font-size: 0.75rem;
    }
    
    .contact-features {
        gap: 0.6rem;
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }
    
    .contact-feature-item {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .contact-feature-item i {
        font-size: 0.9rem;
    }
    
    /* Contact Page Extra Small Mobile */
    .contact-main-section {
        padding: 25px 0;
    }
    
    .contact-page-grid {
        gap: 20px;
    }
    
    .contact-page-left h2 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .contact-page-info {
        margin-top: 1rem;
        gap: 10px;
    }
    
    .contact-page-card {
        padding: 12px;
        gap: 10px;
        border-radius: 12px;
    }
    
    .contact-page-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .contact-page-icon i {
        font-size: 1.1rem;
    }
    
    .contact-page-details h4 {
        font-size: 0.9rem;
    }
    
    .contact-page-details a {
        font-size: 0.85rem;
    }
    
    .contact-page-details p {
        font-size: 0.75rem;
    }
    
    .contact-page-cta {
        padding: 20px 15px;
    }
    
    .contact-page-cta i.fa-headset {
        font-size: 2.2rem;
    }
    
    .contact-page-cta h3 {
        font-size: 1.2rem;
    }
    
    .contact-page-cta p {
        font-size: 0.8rem;
    }
    
    .btn-contact-large {
        padding: 12px 15px;
        gap: 10px;
    }
    
    .btn-contact-large i {
        font-size: 1.5rem;
    }
    
    .btn-contact-large span {
        font-size: 0.95rem;
    }
    
    .btn-contact-large small {
        font-size: 0.7rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .business-hours-card {
        padding: 20px 15px;
    }
    
    .business-hours-card i {
        font-size: 2.2rem;
    }
    
    .business-hours-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hours-item {
        padding: 12px 15px;
    }
    
    .hours-item span {
        font-size: 0.85rem;
    }
    
    .hours-item strong {
        font-size: 0.95rem;
    }
    
    .hours-note {
        font-size: 0.75rem;
    }
    
    /* Footer Extra Small Mobile */
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-top {
        gap: 1.8rem;
        margin-bottom: 1.2rem;
        padding-bottom: 1.2rem;
    }
    
    .footer-logo {
        height: 35px;
    }
    
    .footer-column h3 {
        font-size: 1rem;
    }
    
    .footer-column h4 {
        font-size: 0.95rem;
    }
    
    .footer-column p {
        font-size: 0.8rem;
    }
    
    .footer-column ul li a {
        font-size: 0.85rem;
    }
    
    .contact-info li {
        margin-bottom: 1rem;
    }
    
    .contact-info i {
        font-size: 1.3rem;
    }
    
    .contact-info a,
    .contact-info span {
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        font-size: 0.75rem;
    }
}

/* Mobile Landscape Orientation */
@media (max-width: 900px) and (orientation: landscape) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .contact-cta-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-cta-card i.fa-headset {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-cta-card h3 {
        font-size: 1.3rem;
    }
    
    .contact-cta-card p {
        font-size: 0.9rem;
    }
    
    .btn-contact-primary,
    .btn-contact-whatsapp {
        padding: 0.8rem 1.2rem;
        flex-direction: row;
    }
    
    .btn-contact-primary div,
    .btn-contact-whatsapp div {
        text-align: left;
    }
    
    /* Footer Landscape */
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column {
        text-align: left;
    }
    
    .contact-info li {
        justify-content: flex-start;
    }
    
    /* Contact Page Landscape */
    .contact-page-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .contact-page-left h2 {
        font-size: 1.6rem;
    }
    
    .contact-page-info {
        margin-top: 1.5rem;
    }
    
    .contact-page-card {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
    
    .contact-page-details {
        text-align: left;
    }
    
    .contact-page-cta {
        padding: 2rem 1.5rem;
    }
    
    .btn-contact-large {
        flex-direction: row;
        padding: 12px 18px;
    }
    
    .btn-contact-large div {
        text-align: left;
    }
    
    .contact-page-features {
        text-align: left;
    }
    
    .contact-page-feature {
        justify-content: flex-start;
    }
    
    .hours-item {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==================== PAGE HERO SECTION ==================== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    padding: 150px 0 100px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./image/vtg.webp') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-hero .hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== ABOUT PAGE STYLES ==================== */
.about-intro-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.05);
}

.about-badge-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.about-experience-badge {
    background: var(--primary-gold);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.about-experience-badge p {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.about-intro-right {
    padding: 20px 0;
}

.about-intro-right h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-intro-right p.large {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-intro-right p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-features-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature i {
    font-size: 2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.about-feature h4 {
    color: var(--dark-bg);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.about-feature p {
    color: var(--text-light);
    margin: 0;
}

/* Mission Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* About Values Section */
.about-values-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.values-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.value-card-modern {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.value-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.value-icon-modern i {
    font-size: 2rem;
    color: var(--white);
}

.value-card-modern h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.value-card-modern p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* About Stats Section */
.about-stats-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.about-stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-stats-section .stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.about-stats-section .stat-card i {
    color: var(--primary-gold);
}

.about-stats-section .stat-card h3 {
    color: var(--primary-gold);
}

.about-stats-section .stat-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section Enhancements */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons-large {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-gold);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
    background: var(--dark-bg);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-success-large {
    background: var(--success);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-success-large:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.services-detail-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 60px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.service-detail-item:last-child {
    margin-bottom: 0;
}

.service-detail-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-item.reverse .service-detail-content {
    order: 2;
}

.service-detail-item.reverse .service-detail-image {
    order: 1;
}

.service-detail-number {
    display: inline-block;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(212, 175, 55, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.service-detail-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-detail-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-detail-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.service-detail-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content p.large {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-feature-item:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.service-feature-item i {
    color: var(--primary-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-feature-item span {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
}

.service-detail-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-item:hover .service-detail-image img {
    transform: scale(1.05);
}

.highlight-service {
    border: 3px solid var(--primary-gold);
    position: relative;
}

.highlight-service::before {
    content: '⭐ FEATURED';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 10;
}

/* ==================== GALLERY PAGE STYLES ==================== */
.gallery-intro-section {
    padding: 60px 0;
    background: var(--white);
}

.gallery-full-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-full-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: var(--shadow);
    cursor: pointer;
}

.gallery-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-full-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9) 0%, transparent 100%);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-full-item:hover .gallery-full-overlay {
    transform: translateY(0);
}

.gallery-full-item:hover img {
    transform: scale(1.1);
}

.gallery-full-overlay h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-full-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Gallery Services Highlight */
.gallery-services-highlight {
    padding: 80px 0;
    background: var(--white);
}

.gallery-services-highlight .services-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-main-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-page-left p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-page-left p.large {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-page-info {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-page-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-height: 100px;
}

.contact-page-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-page-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.contact-page-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-page-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.contact-page-details a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
    padding: 0.3rem 0;
}

.contact-page-details a:hover {
    color: var(--secondary-gold);
}

.contact-page-details p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page CTA Card */
.contact-page-cta {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--white);
    position: sticky;
    top: 100px;
}

.contact-page-cta i.fa-headset {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.contact-page-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-page-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-page-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 2rem 0;
}

.btn-contact-large {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    min-height: 70px;
    justify-content: flex-start;
}

.btn-contact-call {
    background: var(--primary-gold);
    color: var(--white);
}

.btn-contact-call:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-contact-wa {
    background: var(--success);
    color: var(--white);
}

.btn-contact-wa:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-contact-large i {
    font-size: 2rem;
}

.btn-contact-large div {
    text-align: left;
}

.btn-contact-large span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
}

.btn-contact-large small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.contact-page-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
    margin-top: 2rem;
}

.contact-page-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-page-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.contact-page-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--white);
}

.map-wrapper {
    margin-top: 3rem;
}

.map-note {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Business Hours Section */
.business-hours-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.business-hours-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.business-hours-card i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.business-hours-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 2rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 2rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--light-bg);
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
}

.hours-item span {
    color: var(--text-light);
    font-size: 1.1rem;
}

.hours-item strong {
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 600;
}

.hours-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* ==================== RESPONSIVE STYLES FOR NEW PAGES ==================== */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        font-size: 0.85rem;
        padding: 6px 16px;
    }
    
    /* About Page Mobile */
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid-large {
        grid-template-columns: 1fr;
    }
    
    .about-stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Page Tablet */
    .contact-main-section {
        padding: 60px 0;
    }
    
    .contact-page-grid {
        gap: 40px;
    }
    
    .contact-page-left h2 {
        font-size: 2.2rem;
    }
    
    .contact-page-info {
        margin-top: 2rem;
        gap: 20px;
    }
    
    .contact-page-card {
        padding: 20px;
    }
    
    .contact-page-icon {
        width: 55px;
        height: 55px;
    }
    
    .contact-page-icon i {
        font-size: 1.4rem;
    }
    
    .map-section,
    .business-hours-section {
        padding: 60px 0;
    }
    
    .business-hours-card {
        padding: 40px 30px;
    }
    
    .business-hours-card i {
        font-size: 3.5rem;
    }
    
    /* Services Page Mobile */
    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        gap: 30px;
    }
    
    .service-detail-item.reverse .service-detail-content,
    .service-detail-item.reverse .service-detail-image {
        order: initial;
    }
    
    .service-detail-number {
        font-size: 3rem;
    }
    
    .service-detail-content h2 {
        font-size: 1.5rem;
    }
    
    .service-features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-image {
        height: 300px;
    }
    
    .highlight-service::before {
        top: 10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 6px 15px;
    }
    
    /* Gallery Page Mobile */
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-services-highlight .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page Mobile */
    .contact-main-section {
        padding: 40px 0;
    }
    
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-page-left h2 {
        font-size: 2rem;
    }
    
    .contact-page-left p {
        font-size: 0.95rem;
    }
    
    .contact-page-info {
        margin-top: 1.5rem;
        gap: 15px;
    }
    
    .contact-page-card {
        padding: 18px;
        gap: 15px;
    }
    
    .contact-page-card:hover {
        transform: translateX(5px);
    }
    
    .contact-page-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-page-icon i {
        font-size: 1.3rem;
    }
    
    .contact-page-details h4 {
        font-size: 1rem;
    }
    
    .contact-page-details a {
        font-size: 0.95rem;
    }
    
    .contact-page-details p {
        font-size: 0.85rem;
    }
    
    .contact-page-cta {
        position: static;
        padding: 35px 25px;
    }
    
    .contact-page-cta i.fa-headset {
        font-size: 3rem;
    }
    
    .contact-page-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-page-cta p {
        font-size: 0.95rem;
    }
    
    .contact-page-buttons {
        gap: 12px;
        margin: 1.5rem 0;
    }
    
    .btn-contact-large {
        padding: 18px 25px;
        gap: 15px;
    }
    
    .btn-contact-large i {
        font-size: 1.8rem;
    }
    
    .btn-contact-large span {
        font-size: 1.1rem;
    }
    
    .btn-contact-large small {
        font-size: 0.8rem;
    }
    
    .contact-page-features {
        gap: 12px;
        margin-top: 1.5rem;
    }
    
    /* Map Section Mobile */
    .map-section,
    .business-hours-section {
        padding: 40px 0;
    }
    
    .map-wrapper iframe {
        height: 350px;
        border-radius: 10px;
    }
    
    .map-note {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    /* Business Hours Mobile */
    .business-hours-card {
        padding: 35px 25px;
    }
    
    .business-hours-card i {
        font-size: 3rem;
        margin-bottom: 1.2rem;
    }
    
    .business-hours-card h3 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hours-list {
        gap: 15px;
        margin-bottom: 1.5rem;
    }
    
    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 18px 25px;
    }
    
    .hours-item span {
        font-size: 1rem;
    }
    
    .hours-item strong {
        font-size: 1.1rem;
    }
    
    .hours-note {
        font-size: 0.9rem;
    }
    
    .cta-buttons-large {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .about-intro-right h2 {
        font-size: 1.8rem;
    }
    
    .mission-card h3,
    .vision-card h3 {
        font-size: 1.5rem;
    }
    
    .service-detail-item {
        padding: 30px 20px;
    }
    
    /* Contact Page Small Mobile */
    .contact-main-section {
        padding: 30px 0;
    }
    
    .contact-page-grid {
        gap: 25px;
    }
    
    .contact-page-left h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-page-left p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-page-info {
        margin-top: 1.2rem;
        gap: 12px;
    }
    
    .contact-page-card {
        padding: 15px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-page-card:hover {
        transform: translateY(-5px);
    }
    
    .contact-page-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-page-icon i {
        font-size: 1.2rem;
    }
    
    .contact-page-details {
        text-align: center;
    }
    
    .contact-page-details h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }
    
    .contact-page-details a {
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .contact-page-details p {
        font-size: 0.8rem;
    }
    
    .contact-page-cta {
        padding: 25px 18px;
        border-radius: 15px;
    }
    
    .contact-page-cta i.fa-headset {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-page-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-page-cta p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .contact-page-buttons {
        gap: 10px;
        margin: 1.2rem 0;
    }
    
    .btn-contact-large {
        padding: 15px 18px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .btn-contact-large i {
        font-size: 1.8rem;
    }
    
    .btn-contact-large div {
        text-align: center;
    }
    
    .btn-contact-large span {
        font-size: 1rem;
    }
    
    .btn-contact-large small {
        font-size: 0.75rem;
    }
    
    .contact-page-features {
        gap: 10px;
        margin-top: 1.2rem;
    }
    
    .contact-page-feature {
        gap: 8px;
        justify-content: center;
    }
    
    .contact-page-feature i {
        font-size: 1.1rem;
    }
    
    .contact-page-feature span {
        font-size: 0.9rem;
    }
    
    /* Map Section Small Mobile */
    .map-section,
    .business-hours-section {
        padding: 30px 0;
    }
    
    .map-wrapper {
        margin-top: 2rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-note {
        font-size: 0.85rem;
        margin-top: 0.8rem;
        padding: 0 10px;
    }
    
    /* Business Hours Small Mobile */
    .business-hours-card {
        padding: 25px 18px;
        border-radius: 15px;
    }
    
    .business-hours-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .business-hours-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1.2rem;
    }
    
    .hours-list {
        gap: 12px;
        margin-bottom: 1.2rem;
    }
    
    .hours-item {
        padding: 15px 18px;
        gap: 6px;
        border-radius: 10px;
    }
    
    .hours-item span {
        font-size: 0.9rem;
    }
    
    .hours-item strong {
        font-size: 1rem;
    }
    
    .hours-note {
        font-size: 0.8rem;
        margin-top: 1rem;
    }
}