/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow-x: hidden;
    color: #000;
}

/* Top Navigation */
.top-nav {
    background: #000;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.top-nav .logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -1px;
    margin-right: 20px;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-nav a:hover {
    opacity: 0.8;
}

.top-nav .login-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
}

.top-nav .login-btn:hover {
    background: #fff;
    color: #000;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(90deg, #FFD700 0%, #FFD700 60%, #FF69B4 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
}

.hero-banner .subtitle {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.award-badge {
    position: absolute;
    top: 30px;
    right: 140px;
    background: #FF1493;
    color: #fff;
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    flex-direction: column;
}

.whatsup-badge {
    background: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    right: 40px;
    font-weight: 700;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Take a peek section */
.peek-section {
    padding: 80px 0;
    background: #fff;
}

.peek-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.peek-card {
    background: #f5f5f5;
    padding: 35px 30px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.peek-card:hover {
    transform: translateX(8px);
    border-color: #FFD700;
}

.peek-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.peek-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.peek-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-yellow {
    background: #FFD700;
    color: #000;
    border: 2px solid #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-yellow:hover {
    background: #000;
    color: #FFD700;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

/* Promotional Banner */
.promo-banner {
    padding: 60px 0;
    background: #fff;
}

/* Phones Section */
.phones-section {
    padding: 80px 0;
    background: #fff;
}

.phones-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
    color: #000;
}

.phone-features {
    font-size: 0.95rem;
    color: #666;
}

.feature-item {
    margin: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.phone-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn:hover {
    background: #333;
}

.tab-btn.active {
    background: #000;
}

.phone-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    height: 100%;
}

.phone-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.phone-image {
    padding: 20px;
    margin-bottom: 20px;
}

.phone-image img {
    max-height: 250px;
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
}

.phone-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.2);
}

.price-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 5px;
}

.price span {
    font-size: 1rem;
    font-weight: 600;
}

.price-detail {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.stock-status {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

/* Holiday Banner */
.holiday-banner {
    padding: 60px 0;
    background: #fff;
}

.bg-pink {
    background: #FF69B4 !important;
    color: #000;
}

.destinations-badge {
    background: #000;
    color: #fff;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Why giffgaff Section */
.why-section {
    padding: 80px 0;
    background: #FF69B4;
}

.why-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    color: #000;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.feature-card i {
    color: #000;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.feature-card p {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-link:hover {
    text-decoration: underline;
}

.award-icon {
    color: #FFD700;
}

.bcorp-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    color: #fff;
}

/* App Section */
.app-section {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.app-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.qr-code {
    background: #fff;
    padding: 15px;
    display: inline-block;
    border-radius: 12px;
}

.phone-mockup {
    position: relative;
}

.app-features {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.app-feature-item {
    background: #FFD700;
    color: #000;
    padding: 15px 20px;
    border-radius: 25px;
    margin-bottom: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

/* Looking for More Section */
.more-section {
    padding: 80px 0;
    background: #fff;
}

.more-section h2 {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
}

.more-card {
    background: #f5f5f5;
    padding: 25px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.more-card:hover {
    border-color: #FFD700;
    transform: translateX(8px);
}

.more-card i {
    font-size: 1.5rem;
    color: #000;
}

.more-card span {
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer h6 {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #fff;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .award-badge,
    .whatsup-badge {
        position: static;
        margin: 20px auto;
    }
    
    .app-features {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .peek-section h2,
    .phones-section h2,
    .why-section h2,
    .more-section h2 {
        font-size: 2rem;
    }
    
    .phone-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-yellow,
    .btn-outline {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 575px) {
    .top-nav .logo {
        font-size: 18px;
    }
    
    .hero-banner {
        padding: 40px 15px;
    }
    
    .hero-banner h1 {
        font-size: 1.8rem;
    }
    
    .peek-card {
        padding: 25px 20px;
    }
    
    .feature-item {
        display: block;
        margin: 10px 0;
    }
}