/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary-color: #2a9d8f;
    --primary-dark: #21867a;
    --primary-light: rgba(42, 157, 143, 0.1);
    --secondary-color: #e76f51;
    --secondary-dark: #e05d3d;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-medium: #555555;
    --background-color: #f5f5f5;
    --card-color: #ffffff;
    --border-color: #eaeaea;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --transition-normal: 0.3s ease;
    --expired-bg: #f8f8f8;
    --expired-border: #e0e0e0;
    --info-color: #2196F3;
    --info-dark: #1976D2;
    --warning-color: #ff9800;
    --warning-dark: #f57c00;
}

/* ===================================
   Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 70px;
}

/* ===================================
   Navbar Styles
   =================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-color);
    padding: 0 20px;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    height: 70px;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(42, 157, 143, 0.95);
    backdrop-filter: blur(5px);
    height: 60px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s ease;
}

.logo-img {
    height: 70px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

.logo a:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Desktop Menu */
.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    transition: all 0.3s ease;
}

.menu li {
    position: relative;
}

.menu a {
    display: block;
    color: white;
    text-align: center;
    padding: 25px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.scrolled .menu a {
    padding: 20px 16px;
}

.menu a:hover,
.menu a.active {
    background-color: var(--primary-dark);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background-color: #f5f5f5;
    color: #2a9d8f;
}

.dropdown:after {
    content: "▼";
    font-size: 10px;
    color: white;
    position: absolute;
    right: 5px;
    top: 25px;
    transition: transform 0.3s ease;
}

.scrolled .dropdown:after {
    top: 20px;
}

.dropdown:hover:after {
    transform: rotate(180deg);
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
}

.login-btn {
    display: flex;
    align-items: center;
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-left: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.login-btn:hover {
    background-color: #e05d3d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.login-btn i {
    margin-right: 8px;
}

.signup-btn {
    display: flex;
    align-items: center;
    background-color: transparent;
    color: white;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin-left: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.signup-btn:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.signup-btn i {
    margin-right: 8px;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background-color: transparent;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    z-index: 1002;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
}

.menu-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle:focus {
    outline: none;
}

/* Hamburger Icon */
.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
    top: 9px;
}

.hamburger span:nth-child(4) {
    top: 18px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    padding-top: 70px;
}

.mobile-menu.open {
    right: 0;
}

.menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-list a {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
}

.mobile-menu-list a:hover,
.mobile-menu-list a.active {
    background-color: var(--primary-dark);
}

/* Mobile Dropdown */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown > a {
    position: relative;
}

.mobile-dropdown > a:after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.mobile-dropdown.active > a:after {
    transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-content {
    display: none;
    background-color: rgba(0, 0, 0, 0.1);
}

.mobile-dropdown-content a {
    padding-left: 40px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: block;
}

/* Mobile Auth Buttons */
.mobile-auth-buttons {
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 10px;
}

.mobile-auth-buttons .signup-btn,
.mobile-auth-buttons .login-btn {
    margin: 5px 0;
    width: 100%;
    justify-content: center;
}

.mobile-auth-buttons .signup-btn {
    margin-bottom: 10px;
    margin-left: 0;
}

.mobile-auth-buttons .login-btn {
    margin-left: 0;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   Container & Header
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin: 40px 0;
}

.header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.header h1::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin: 50px 0 30px;
    position: relative;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.section-header h2 i.fa-fire {
    color: var(--secondary-color);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 2px;
}

.section-header p {
    color: #666;
    font-size: 1rem;
}

/* Scheduled Section Colors */
.scheduled-section .section-header h2 {
    color: var(--primary-color);
}

.scheduled-section .section-header h2 i {
    color: var(--warning-color);
}

.scheduled-section .section-header h2::after {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Expired Section Colors */
.expired-section .section-header h2 {
    color: var(--text-medium);
}

.expired-section .section-header h2 i {
    color: var(--text-medium);
}

.expired-section .section-header h2::after {
    background: linear-gradient(90deg, var(--text-medium) 0%, #888 100%);
}

/* ===================================
   Offers Container
   =================================== */
.offers-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

/* ===================================
   Offer Cards
   =================================== */
.offer-card {
    background-color: var(--card-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.offer-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.offer-card:hover .offer-image {
    transform: scale(1.1);
    filter: brightness(0.9);
}

/* Badges */
.discount-badge,
.expiry-badge {
    position: absolute;
    top: 15px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: pulse 2s infinite;
}

.discount-badge {
    right: 15px;
}

.expiry-badge {
    left: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 0.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(42, 157, 143, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
    }
}

/* Offer Content */
.offer-content {
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.offer-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    gap: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-medium);
    font-weight: 500;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.offer-description {
    color: var(--text-medium);
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ===================================
   Scheduled Offers
   =================================== */
.scheduled-offer {
    position: relative;
    opacity: 0.95;
}

.scheduled-offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.03) 0%, rgba(255, 152, 0, 0.01) 100%);
    pointer-events: none;
    border-radius: 15px;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--warning-color) 0%, #f57c00 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
    animation: pulse-coming 2s infinite;
    display: flex;
    align-items: center;
    gap: 5px;
}

@keyframes pulse-coming {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

.start-date-info {
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.08) 0%, rgba(255, 152, 0, 0.03) 100%);
    padding: 12px 15px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 4px solid var(--warning-color);
}

.start-date-info i {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.start-date-info .date-text {
    flex: 1;
}

.start-date-info .date-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.start-date-info .date-value {
    display: block;
    font-size: 1rem;
    color: var(--warning-color);
    font-weight: 600;
    margin-top: 2px;
}

.countdown-timer {
    background: rgba(255, 152, 0, 0.08);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--warning-color);
    font-weight: 600;
    margin-top: 8px;
}

/* ===================================
   Coupon Code
   =================================== */
.coupon-container {
    margin-top: 15px;
    position: relative;
}

.coupon-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-label i {
    margin-right: 6px;
    color: var(--primary-color);
}

.coupon-badge {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ececec 100%);
    padding: 10px 14px;
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(42, 157, 143, 0.15);
}

.coupon-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.coupon-code {
    flex-grow: 1;
    letter-spacing: 2px;
    font-size: 1.05rem;
    color: var(--primary-color);
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    min-width: 85px;
    justify-content: center;
}

.copy-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(42, 157, 143, 0.3);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    animation: successPulse 0.3s ease;
}

@keyframes successPulse {
    0% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.1); 
    }
    100% { 
        transform: scale(1); 
    }
}

.copy-btn i {
    font-size: 14px;
    transition: all 0.3s ease;
}

.copy-text {
    transition: all 0.3s ease;
}

/* ===================================
   Offer Buttons
   =================================== */
.offer-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.offer-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.scheduled-button {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%) !important;
    opacity: 0.8;
}

.scheduled-button:hover {
    transform: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

/* ===================================
   Expired Offers
   =================================== */
.expired-section,
.scheduled-section {
    margin-top: 60px;
    padding-top: 40px;
}

.expired-section {
    border-top: 2px solid #f0f0f0;
}

.expired-offer {
    opacity: 0.85;
    background-color: var(--expired-bg);
    border: 1px solid var(--expired-border);
}

.expired-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(0,0,0,0.7);
    color: white;
    font-weight: 600;
    padding: 4px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1;
}

/* ===================================
   No Offers
   =================================== */
.no-offers {
    text-align: center;
    padding: 80px 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    margin: 40px auto;
}

.no-offers i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-offers h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.no-offers p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: #263238;
    color: #f5f5f5;
    padding: 60px 0 0 0;
    font-family: 'Poppins', sans-serif;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 40px;
    padding: 0 15px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #e76f51;
}

.footer-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #b0bec5;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b0bec5;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    padding-left: 15px;
}

.footer-links a:before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #e76f51;
    padding-left: 20px;
}

.footer-links a:hover:before {
    left: 5px;
}

/* Social Icons */
.social-icons-container {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    justify-content: flex-start;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #37474f;
    color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icon:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
    border-radius: 50%;
}

.social-icon i {
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon:hover:before {
    transform: scale(1);
}

.social-icon.facebook:before {
    background-color: #3b5998;
}

.social-icon.whatsapp:before {
    background-color: #25d366;
}

.social-icon.phone:before {
    background-color: #4CAF50;
}

.social-icon.instagram:before {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon .tooltip {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: #000;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-icon .tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    border-width: 5px 5px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
}

.social-icon:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    top: -45px;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background-color: #37474f;
    color: white;
    border-radius: 4px 0 0 4px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form input::placeholder {
    color: #90a4ae;
}

.newsletter-form button {
    padding: 10px 15px;
    background-color: #2a9d8f;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e76f51;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #1e272c;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #90a4ae;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #e76f51;
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    width: 50px; 
    height: 50px; 
    border-radius: 50%; 
    text-align: center;
    font-size: 24px; 
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

.back-to-top.show {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ===================================
   Responsive Styles
   =================================== */
@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .auth-buttons {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    
    .container {
        padding: 15px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .offer-card {
        max-width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-section {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-icons-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 15px;
    }

    .logo a {
        font-size: 18px;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .mobile-menu {
        width: 250px;
        right: -250px;
    }
    
    .header h1 {
        font-size: 1.6rem;
    }
    
    .offer-title {
        font-size: 1.3rem;
    }
}