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

body {
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    padding-top: 82px;
    letter-spacing: 1px;
    /* Account for fixed header height */
}

/* Heading and Navbar Font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cardo', serif;
    font-weight: 400;
}

.nav-link,
.logo,
.footer-logo,
.footer-links a {
    font-family: 'Inter', serif;
}

.breadcrumb {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-content a:hover {
    color: #ffd700;
}

.breadcrumb-content i {
    color: #999;
    font-size: 12px;
}

.breadcrumb-content span {
    color: #333;
    font-weight: 500;
}

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

/* Header Styles */
.header {
    background-color: #000;
    color: white;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #fff;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fcf303;
    color: #000;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.logo:hover {
    background-color: #e8d903;
    color: #000;
    text-decoration: none;
    transform: translateY(-1px);
}

.logo .icon {
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fcf303;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #fcf303;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}

.cart-icon:hover .cart-count {
    transform: scale(1.1);
}

.cart-icon .icon {
    font-size: 18px;
    color: #000;
}

.cart-count {
    position: absolute;
    top: -12px;
    right: -12px;
    background-color: #fcf303;
    color: #000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(45deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center center;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 1140px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button {
    background-color: #fcf303;
    color: #000;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Inter', serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

/* Products Section */
.products-section {
    background-color: white;
    padding: 80px 0;
}

.section-divider {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 1;
}

.section-divider span {
    background-color: white;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.about-section {
    margin-bottom: 50px;

}

.about-section p {
    margin-bottom: 15px;
}

.section-title {
    text-align: start;
    font-size: 24px;
    font-weight: 400;
    color: #000;
    margin-bottom: 25px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.product-card {
    background: white;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

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

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

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

.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ffffff;
    color: #334155;
    padding: 0.4em 0.8em;
    border-radius: 20px;
    letter-spacing: 0.5px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.product-info {
    padding: 20px;
}

.product-category {
    color: #858d99;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-size: 14px;
    font-family: 'Inter', serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #333;
    min-height: 59px;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: #ddd;
    margin-right: 2px;
}

.product-price {
    margin-bottom: 0px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-right: 10px;
}

.sale-price {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
}

.add-to-cart {
    background-color: #000;
    color: white;
    border: none;
    padding: 15px 12px;
    font-size: 14px;
    font-weight: 300;
    cursor: pointer;
    text-transform: capitalize;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin: 0px 20px 20px 20px;
}

.add-to-cart:hover {
    background-color: #333;
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fcf303;
    color: #000;
    padding: 8px 15px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-logo i {
    font-size: 18px;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fcf303;
}

.scroll-top {
    background-color: #fcf303;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top:hover {
    background-color: #ffed4e;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        gap: 20px;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        margin: 0 10px;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-card:nth-child(7) {
    animation-delay: 0.7s;
}

.product-card:nth-child(8) {
    animation-delay: 0.8s;
}

.product-card:nth-child(9) {
    animation-delay: 0.9s;
}

.product-card:nth-child(10) {
    animation-delay: 1.0s;
}

.product-card:nth-child(11) {
    animation-delay: 1.1s;
}

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

/* Cart Modal Styles */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.cart-modal-content {
    background: white;
    border-radius: 3px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-modal-header h3 {
    margin: 0;
    font-family: 'Inter', serif;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    color: #333;
}

.cart-modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 450px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.cart-item-details h4 {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Inter', serif;
    margin: 0 0 5px 0;
}

.cart-item-details p {
    margin: 0 0 10px 0;
    font-size: 12px;
    color: #666;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: #f0f0f0;
    border: none;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-weight: bold;
}

.quantity-btn:hover {
    background: #ddd;
}

.quantity {
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.remove-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
}

.remove-btn:hover {
    background: #c0392b;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 0;
}

.cart-total {
    padding: 15px 0;
    border-top: 2px solid #eee;
    text-align: right;
    font-size: 18px;
    color: #333;
}

.cart-modal-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cart-modal .btn-primary,
.cart-modal .btn-secondary {
    padding: 15px 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.cart-modal .btn-primary {
    background: #fcf303;
    color: #000;
}

.cart-modal .btn-primary:hover {
    background: #ffed4e;
}

.cart-modal .btn-secondary {
    background: #f0f0f0;
    color: #333;
}

.cart-modal .btn-secondary:hover {
    background: #ddd;
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        margin: 10px;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
    }

    .cart-item-image {
        width: 100%;
        height: 150px;
    }

    .cart-modal-footer {
        flex-direction: column;
    }
}

.footer-address {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.footer-address .address-icon {
    flex-shrink: 0;
}

.footer-address .icon {
    width: 20px;
    height: 20px;
    fill: #fcf303;
}

.footer-address .address-content p {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 5px 0;
    color: #ccc;
}

.footer-address .address-content p:last-child {
    margin-bottom: 0;
}

.footer-address .address-content a {
    color: #fcf303;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-address .address-content a:hover {
    color: #e8d903;
    text-decoration: underline;
}

/* Contact Info Styles for About Page */
.contact-info {
    margin: 20px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
}

.contact-details p {
    margin: 0;
    color: #666;
    line-height: 1.4;
}

.contact-details a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #fcf303;
    text-decoration: underline;
}

/* Policy Page Styles */
.policy-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid #fcf303;
}

.policy-header p {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
}

.policy-header strong {
    color: #333;
}

/* Enhanced list styling for policy pages */
.about-list {
    padding-left: 0;
    list-style: none;
}

.about-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.about-list li::before {
    content: "•";
    color: #fcf303;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.about-list li strong {
    color: #333;
}

/* Responsive adjustments for policy pages */
@media (max-width: 768px) {
    .policy-header {
        padding: 15px;
        margin-bottom: 20px;
    }

    .policy-header p {
        font-size: 13px;
    }
}

/* Policy highlight section for important information */
.policy-highlight {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 4px solid #fcf303;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.policy-highlight .highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-highlight .highlight-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.policy-highlight .highlight-content h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Cardo', serif;
}

.policy-highlight .highlight-content p {
    margin: 0;
    color: #666;
    line-height: 1.4;
    font-size: 14px;
}

/* Responsive adjustments for policy highlights */
@media (max-width: 768px) {
    .policy-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 15px;
    }

    .policy-highlight .highlight-content h4 {
        font-size: 15px;
    }

    .policy-highlight .highlight-content p {
        font-size: 13px;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.contact-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #fcf303;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background-color: #e8d903;
    transform: scale(1.1);
}

.contact-card-icon .icon {
    width: 28px;
    height: 28px;
    fill: #000;
}

.contact-card-content h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Cardo', serif;
}

.contact-card-content p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.contact-card-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #fcf303;
}

/* Business Hours Styles */
.business-hours {
    margin: 20px 0;
}

.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #fcf303;
}

.hours-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hours-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.hours-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-family: 'Cardo', serif;
}

.hours-content p {
    margin: 2px 0;
    color: #666;
    font-size: 14px;
}

/* Response Times Styles */
.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.response-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.response-item:hover {
    border-color: #fcf303;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.response-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.response-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Cardo', serif;
}

.response-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Quick Links Styles */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.quick-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    border-color: #fcf303;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    text-decoration: none;
}

.quick-link-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quick-link:hover .quick-link-icon {
    background-color: #e8d903;
    transform: scale(1.1);
}

.quick-link-icon .icon {
    width: 20px;
    height: 20px;
    fill: #000;
}

.quick-link-content h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
    color: #333;
    font-family: 'Cardo', serif;
}

.quick-link-content p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .contact-card {
        padding: 20px;
    }

    .contact-card-content h2 {
        font-size: 20px;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .response-grid {
        grid-template-columns: 1fr;
    }

    .response-item,
    .quick-link {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .quick-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-card-icon {
        width: 50px;
        height: 50px;
    }

    .contact-card-icon .icon {
        width: 24px;
        height: 24px;
    }

    .contact-card-content h2 {
        font-size: 18px;
    }

    .contact-card-content p {
        font-size: 14px;
    }
}

/* Contact Methods Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.method-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 25px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.method-item:hover {
    border-color: #fcf303;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.method-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    background-color: #fcf303;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.method-item:hover .method-icon {
    background-color: #e8d903;
    transform: scale(1.05);
}

.method-icon .icon {
    width: 22px;
    height: 22px;
    fill: #000;
}

.method-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
    font-family: 'Cardo', serif;
}

.method-content p {
    margin: 0 0 5px 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.method-content p:last-child {
    margin-bottom: 0;
}

.method-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: #fcf303;
}

/* Enhanced response time styling */
.response-time {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
}

/* Responsive Design for Contact Methods */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .method-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .method-content h4 {
        font-size: 16px;
    }
}

/* Header Navigation Active States */
.nav-link.active {
    color: #fcf303;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #fcf303;
    border-radius: 1px;
}

/* Enhanced hover effect for non-active nav links */
.nav-link:not(.active):hover {
    color: #fcf303;
    transition: color 0.3s ease;
}

/* Footer Links Active States */
.footer-links a.active {
    color: #fcf303;
    font-weight: 600;
    position: relative;
}

.footer-links a.active::before {
    content: '▶';
    margin-right: 5px;
    font-size: 10px;
    color: #fcf303;
}

/* Enhanced footer link hover for non-active links */
.footer-links a:not(.active):hover {
    color: #fcf303;
}

/* Responsive adjustments for active states */
@media (max-width: 768px) {
    .nav-link.active::after {
        display: none;
    }

    .footer-links a.active::before {
        font-size: 8px;
    }
}