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

:root {
    --primary-red: #ff0000;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Header Styles ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--border-color);
    border-radius: 15px;
    color: white;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-content button {
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#yesBtn {
    background: #6b2df0;
    color: #fff;
}

#yesBtn:hover {
    background: #3e8e41;
}

#noBtn {
    background: #9d3bf6;
    color: #fff;
}

#noBtn:hover {
    background: #d32f2f;
}

/* Warning section */
.warn {
    font-size: 16px;
    background-color: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;
}

.warn.active {
    display: none;
}

.header {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}

.logo-highlight {
    color: var(--primary-red);
}

.logo img {
    width: 70px;
    height: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.dropdown-icon {
    font-size: 10px;
}

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

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--primary-red);
}

.shop-now-btn {
    background: transparent;
    border: 2px solid var(--primary-red);
    color: var(--text-primary);
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.shop-now-btn:hover {
    background: var(--primary-red);
    color: var(--text-primary);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Hero Section ===== */
.hero {
    padding: 80px 0 60px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Hero Left */
.hero-left {
    padding-top: 40px;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-description {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.feature-icon {
    color: var(--primary-red);
    margin-bottom: 12px;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-title::after {
    content: '→';
    color: var(--primary-red);
    font-size: 16px;
}

.feature-text {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* Hero Center */
.hero-center {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.just-do-it-badge {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10;
}

.just-do-it-badge span {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.product-image {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 40px 0;
}

.product-image img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 40px rgba(255, 0, 0, 0.3));
}

.product-curve {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 80px;
    border: 3px solid var(--primary-red);
    border-top: none;
    border-radius: 0 0 50% 50%;
    z-index: 1;
}

.hero-product-btn {
    display: inline-block;
    padding: 16px 48px;
    background: var(--primary-red);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
    margin: 20px 0 10px;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.hero-product-btn:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 5px;
}

/* Hero Right */
.hero-right {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.clock-badge {
    display: flex;
    justify-content: center;
}

.badge-content {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid var(--primary-red);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.badge-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1;
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 5px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-feature-item {
    position: relative;
    padding-left: 20px;
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
}

.feature-highlight {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== Hot Deals Section ===== */
.hot-deals {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.deals-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.deals-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    width: 100%;
}

.deal-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
}

.deal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.deal-card-featured {
    background: var(--primary-red);
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.4);
}

.deal-card-featured:hover {
    transform: scale(1.12) translateY(-10px);
}

.deal-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
}

.curve-line {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
    z-index: 1;
}

.deals-nav {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.deals-nav:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
}

/* Deal Badge */
.deal-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Deal Info */
.deal-info {
    margin-top: 20px;
    text-align: center;
}

.deal-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.deal-card-featured .deal-title {
    color: var(--text-primary);
}

.deal-puffs {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.deal-card-featured .deal-puffs {
    color: rgba(255, 255, 255, 0.9);
}

.deal-link-btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary-red);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.deal-link-btn:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.deal-card-featured .deal-link-btn {
    background: var(--text-primary);
    color: var(--primary-red);
    border-color: var(--text-primary);
}

.deal-card-featured .deal-link-btn:hover {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* ===== Description Section ===== */
.description-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.description-content {
    max-width: 1000px;
    margin: 0 auto;
}

.description-intro {
    margin-bottom: 30px;
}

.description-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-align: center;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-align: center;
}

.description-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

.description-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.description-expandable.expanded {
    max-height: 5000px;
    transition: max-height 0.8s ease-in;
}

.benefits-section,
.features-section,
.brands-section,
.advantages-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 16px;
}

.benefits-title,
.features-title,
.brands-title,
.advantages-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.benefits-list,
.features-list {
    list-style: none;
    padding: 0;
}

.benefits-list li,
.features-list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-icon,
.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.benefits-list strong,
.features-list strong {
    color: var(--text-primary);
}

.brands-text,
.brands-list-text,
.brands-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.brands-list-text {
    color: var(--primary-red);
    font-size: 18px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.advantage-card {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.advantage-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.advantage-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.show-more-container {
    text-align: center;
    margin-top: 40px;
}

.show-more-btn {
    background: var(--primary-red);
    color: var(--text-primary);
    border: 2px solid var(--primary-red);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: transparent;
    color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.show-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.show-more-btn.active .btn-icon {
    transform: rotate(180deg);
}

/* ===== Reviews Section ===== */
.reviews {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(26, 26, 26, 0.5) 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 16px;
    margin-top: -40px;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.review-stars {
    display: flex;
    gap: 4px;
}

.star {
    color: #ffd700;
    font-size: 20px;
}

.review-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), #cc0000);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.author-date {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===== Responsive Design ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-left,
    .hero-right {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-center {
        order: -1;
    }

    .hero-title {
        font-size: 48px;
    }

    .deals-container {
        gap: 30px;
    }

    .section-title {
        font-size: 40px;
    }

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

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    /* Hide header actions on mobile - keep only logo and hamburger */
    .header-actions {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        padding: 100px 30px 30px;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        border-left: 1px solid var(--border-color);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .nav-link {
        font-size: 18px;
    }

    .header-actions {
        gap: 10px;
    }

    .shop-now-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .just-do-it-badge {
        width: 80px;
        height: 80px;
        top: 20px;
    }

    .just-do-it-badge span {
        font-size: 11px;
    }

    .product-image {
        max-width: 100%;
    }

    .product-curve {
        display: none;
    }

    .clock-icon {
        width: 100px;
        height: 100px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .deals-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .deals-container {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 400px;
    }

    .deal-card-featured {
        transform: scale(1);
    }

    .deal-card-featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .deals-nav {
        position: relative;
    }

    .deals-nav-left,
    .deals-nav-right {
        display: none;
    }

    .curve-line {
        display: none;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .badge-content {
        width: 100px;
        height: 100px;
    }

    .badge-number {
        font-size: 30px;
    }

    .badge-text {
        font-size: 12px;
    }

    .description-subtitle {
        font-size: 20px;
    }

    .description-text {
        font-size: 15px;
    }

    .benefits-section,
    .features-section,
    .brands-section,
    .advantages-section {
        padding: 20px;
    }

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

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

    .logo img {
        width: 55px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 20px;
    }

    .deal-card {
        padding: 30px;
    }
}

/* Animation for mobile menu overlay */
@media (max-width: 768px) {
    .deal-card-featured {
        background: #1a1a1a;
        box-shadow: none;
    }

    .deal-card-featured .deal-link-btn {
        background: var(--primary-red);
        border: none;
        color: var(--text-primary);
    }

    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

footer {
    position: relative;
    width: 100%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 100px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    padding: 35px 20px;
    padding-top: 20px;
    margin-right: 40px;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 26px;
    gap: 80px;
    padding-bottom: 35px;
    border-bottom: 2px solid gray;
    position: relative;
}

.foot-cont-one {
    display: flex;
    gap: 80px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid gray;

    color: rgb(168, 167, 167);
}

footer svg {
    fill: rgba(255, 255, 255, 0.842);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    width: 40px;
}

.city {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.cont-col {
    display: flex;
    flex-direction: column;
}

.cont-col:first-child {
    color: rgb(168, 167, 167);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 20px;
}

.foot-cont-three p:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.foot-cont-three p {
    position: relative;
    padding-right: 16px;
}

.foot-cont-three p::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    border-bottom: 2px solid gray;
}

@media (max-width: 768px) and (min-width: 320px) {
    footer {
        align-items: center;
        padding: 40px 40px;
    }

    .warn {
        font-size: 10px !important;
    }

    .footer-logo {
        margin-right: 0;
    }

    .social {
        gap: 0;
    }

    .footer-logo img {
        object-fit: cover;
        width: 90px;
    }

    .footer-cont {
        font-size: 18px;
        flex-direction: column;
    }

    .foot-cont-two {
        padding-top: 35px;
        border-top: 2px solid gray;
    }

    .foot-cont-three {
        flex-direction: column;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-desc {
        font-size: 0.9rem;
    }

    .featured-btns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .featured-btns a {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}