/* ==========================================================================
   G Town Wines - Premium Luxury CSS
   ========================================================================== */

/* --- Variables & Tokens --- */
:root {
    /* Colors */
    --color-bg-primary: #FCFCFA;
    /* Warm White */
    --color-bg-secondary: #F5F4F0;
    /* Soft Beige */
    --color-accent-wine: #5A182A;
    /* Deep Burgundy */
    --color-accent-gold: #C5A059;
    /* Champagne Gold */
    --color-text-main: #2A2626;
    /* Rich Charcoal */
    --color-text-muted: #6B6565;
    /* Elegant Brown/Gray */
    --color-white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing & Utilities */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 15px 35px rgba(42, 38, 38, 0.04);
    --shadow-hover: 0 20px 40px rgba(90, 24, 42, 0.08);
}

/* --- Global Resets & Base --- */
body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-main);
}

.text-gold {
    color: var(--color-accent-gold) !important;
}

.text-wine {
    color: var(--color-accent-wine) !important;
}

.bg-secondary-soft {
    background-color: var(--color-bg-secondary);
}

/* --- Utilities --- */
.tracking-wide {
    letter-spacing: 2px;
}

.fs-sm {
    font-size: 0.85rem;
}

/* --- Buttons --- */
.btn-primary-luxury {
    background-color: var(--color-accent-wine);
    color: var(--color-white);
    padding: 14px 36px;
    border: 1px solid var(--color-accent-wine);
    border-radius: 0;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-primary-luxury:hover {
    background-color: #c5a059;
    color: #ffffff;
}

.btn-outline-luxury {
    background-color: transparent;
    color: var(--color-white);
    padding: 14px 36px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-outline-luxury:hover {
    background-color: var(--color-white);
    color: var(--color-text-main);
    border-color: var(--color-white);
}

/* --- 1. Topbar --- */
.topbar {
    background-color: var(--color-text-main);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-family: var(--font-body);
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.topbar a:hover {
    color: var(--color-accent-gold);
}

.topbar-social a {
    margin-left: 15px;
    font-size: 0.9rem;
}

.topbar-promo {
    color: var(--color-accent-gold);
    font-style: italic;
    font-family: var(--font-heading);
}

/* --- 2. Main Header --- */
.main-header {
    position: absolute;
    top: 36px;
    /* below topbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-content h3 {
    color: #fff;
}

.category-content a {
    color: #fff !important;
}

/* .main-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(42, 38, 38, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: none;
} */

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-white) !important;
    letter-spacing: 1px;
    padding: 0px;
}

.brand-g {
    color: var(--color-accent-gold);
    font-style: italic;
    font-size: 2.2rem;
    margin-right: -4px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    padding: 10px 20px !important;
    transition: var(--transition-smooth);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    color: var(--color-white);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

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

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-accent-wine);
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 3. Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    /* For parallax */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.hero-section .container {
    z-index: 3;
    padding-top: 100px;
    /* Offset for header */
}

.hero-badge {
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--color-accent-gold);
    padding-bottom: 5px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), transparent);
    margin-top: 10px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 10px);
    }
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .main-header {
        background: rgba(42, 38, 38, 0.95);
        top: 0;
        /* Cover topbar space on mobile */
    }

    .navbar-collapse {
        background: rgba(42, 38, 38, 0.98);
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

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






/* --- 4. Featured Collection --- */
.product-card {
    background: var(--color-white);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    padding: 0px 0px 20px 0px;
    text-align: center;
}

.product-img {
    object-fit: contain;
    transition: transform 0.6s ease;
}

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

.product-quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    transition: var(--transition-smooth);
    opacity: 0;
    padding: 0 20px;
}

.product-card:hover .product-quick-view {
    bottom: 20px;
    opacity: 1;
}

.product-title {
    font-family: var(--font-heading);
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-title:hover {
    color: var(--color-accent-wine);
}

.btn-outline-luxury.text-wine:hover {
    background-color: var(--color-accent-wine);
    color: var(--color-white) !important;
}

/* --- 5. Why Choose Us --- */
.feature-box {
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.feature-box:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
    border-color: var(--color-accent-gold);
}

.feature-icon i {
    font-size: 2.5rem;
    transition: var(--transition-smooth);
}

.feature-box:hover .feature-icon i {
    transform: scale(1.1);
}

/* --- 6. Experience / Story --- */
.story-image-wrap {
    position: relative;
}

.story-image-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent-gold);
    z-index: -1;
}

.story-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--color-white);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
    .story-experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px;
    }
}

/* --- 7. Category Showcase --- */
.category-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.category-card.large {
    height: 100%;
    min-height: 350px;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
    z-index: 1;
    transition: var(--transition-smooth);
}

.category-overlay.light-overlay {
    background: transparent;
}

.category-content {
    position: relative;
    z-index: 2;
    width: 100%;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.category-card:hover .category-content {
    transform: translateY(0);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* --- 8. Membership Banner --- */
.membership-banner {
    border: 1px solid var(--color-accent-gold);
    padding: 10px;
    /* creating a double border effect */
    background: transparent;
    border-radius: 2px;
}

.membership-bg {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.membership-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(42, 38, 38, 0.85);
    z-index: 2;
}

.membership-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-hover);
}

/* --- 9. Testimonial Section --- */
.testimonial-carousel {
    padding-bottom: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-accent-wine);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--color-accent-wine);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: var(--color-text-main);
    transition: var(--transition-smooth);
}

.carousel-control-prev:hover i,
.carousel-control-next:hover i {
    color: var(--color-white);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* --- 10. Gallery Section --- */
.gallery-item {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    height: 610px;
    /* 300 + 300 + gap */
}

.gallery-item.small {
    height: 300px;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

@media (max-width: 991px) {

    .gallery-item.large,
    .gallery-item.small {
        height: 300px;
    }
}

/* --- 11. Instagram Section --- */
.insta-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    transition: transform 0.6s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 24, 42, 0.7);
    /* Wine color overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

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

/* --- 12. CTA Banner --- */
.cta-section {
    background-image: linear-gradient(rgba(42, 38, 38, 0.9), rgba(42, 38, 38, 0.9)), url('../images/slid3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

/* --- 13. Footer --- */
.main-footer {
    background-color: var(--color-text-main);
    /* Rich charcoal */
    color: var(--color-white);
}

.footer-social a {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition-smooth);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

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

.footer-newsletter .form-control {
    border-radius: 0;
    padding: 12px 20px;
    font-size: 0.9rem;
}

.footer-newsletter .form-control:focus {
    box-shadow: none;
    border-color: var(--color-accent-gold) !important;
}

.footer-newsletter .btn {
    padding: 12px 24px;
}

.footer-bottom-links a:hover {
    color: var(--color-white) !important;
}


















/* =========================
   HEADER
========================= */

.main-header {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 12px 0;
}

/* Logo */
.logo-img {
    width: 120px;
}

/* Navbar */
.navbar-nav {
    gap: 25px;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
}

/* Mobile Menu */
@media (max-width: 991px) {

    .navbar-collapse {
        background: #111;
        padding: 25px;
        border-radius: 15px;
        margin-top: 15px;
    }

    .navbar-nav {
        gap: 10px;
    }

    .nav-link {
        padding: 10px 0;
        font-size: 17px;
    }

    .header-actions {
        margin-top: 15px;
    }

    .btn-primary-luxury {
        width: 100%;
    }

    .logo-img {
        width: 90px;
    }

    div#topbar {
        display: none;
    }

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

.main-header button i {
    color: #fff;
    font-size: 34px;
}



.hero-content h2 {
    font-size: 52px;
}

.premium-brands {
    background: #f7f5f3;
}

.section-title h2 {
    font-size: 52px;
    font-family: serif;
    margin-bottom: 15px;
}

.section-title p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 30px;
}

.brand-box {
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: .4s;
}

.brand-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.brand-box img {
    max-width: 100%;
    object-fit: contain;
}

/* arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #111;
}

@media(max-width:768px) {

    .section-title h2 {
        font-size: 36px;
    }

    .brand-box {
        height: 130px;
    }
}

/* --- Page Header --- */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: var(--color-text-main);
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
    z-index: 1;
}
.page-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}
.page-title {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 15px;
}
.page-subtitle {
    color: var(--color-accent-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Contact Page --- */
.contact-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    border-radius: 2px;
    font-size: 0.95rem;
    background-color: var(--color-bg-primary);
    transition: var(--transition-smooth);
}
.contact-form .form-control:focus {
    border-color: var(--color-accent-gold);
    box-shadow: none;
    background-color: var(--color-white);
}
.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.accordion-luxury .accordion-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 10px;
    background: transparent;
}
.accordion-luxury .accordion-button {
    background: transparent;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text-main);
    padding: 20px 0;
    box-shadow: none;
}
.accordion-luxury .accordion-button:not(.collapsed) {
    color: var(--color-accent-wine);
    background: transparent;
}
.accordion-luxury .accordion-body {
    padding: 0 0 20px 0;
    color: var(--color-text-muted);
}

/* --- About Us Page (Timeline & Team) --- */
.timeline {
    position: relative;
    padding: 40px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--color-accent-gold);
    opacity: 0.3;
}
.timeline-item {
    position: relative;
    margin-bottom: 40px;
}
.timeline-item::after {
    content: '';
    display: table;
    clear: both;
}
.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-accent-gold);
    border-radius: 50%;
    border: 4px solid var(--color-white);
    z-index: 2;
}
.timeline-content {
    width: 45%;
    padding: 30px;
    background: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 2px;
    transition: var(--transition-smooth);
}
.timeline-content:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--color-accent-gold);
}
.timeline-item:nth-child(odd) .timeline-content {
    float: left;
}
.timeline-item:nth-child(even) .timeline-content {
    float: right;
}
.timeline-year {
    color: var(--color-accent-wine);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    .timeline-dot {
        left: 20px;
    }
    .timeline-content {
        width: calc(100% - 50px);
        float: right !important;
    }
}
.team-card {
    text-align: center;
    background: var(--color-white);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}
.team-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-10px);
}
.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--color-bg-secondary);
}
.team-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.team-role {
    color: var(--color-accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.stat-item {
    text-align: center;
    padding: 30px;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-label {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 500;
}


.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height: 60px;
    width: 60px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    transition:0.3s ease;
    right: 30px;
    z-index: 999;
    bottom: 40px;
}

.whatsapp-btn i{
    font-size:34px;
}

.whatsapp-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 15px 35px rgba(37,211,102,0.5);
}

.product-card p {
    font-size: 20px;
    background-color: #5a182a;
    font-style: italic;
    display: table;
    color: #fff !important;
    margin: 0 auto;
    padding: 2px 18px;
    border-radius: 50px;
}

.btn_call {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn_call a {
    background-color: #169e77;
    display: block;
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}
.btn_call a.call {
    background-color: #c5a059;
}