/* style.css - izzi clone */
:root {
    --primary-color: #E6007E; /* Magenta izzi */
    --primary-hover: #C5006C;
    --dark-bg: #101010;
    --light-bg: #F4F4F4;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

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

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    border-radius: 30px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}
.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}
.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.9rem;
    padding: 15px 20px;
    width: 100%;
}
.btn-submit:hover {
    background-color: var(--primary-hover);
}
.btn-block {
    display: block;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: #222;
    color: #fff;
    font-size: 0.8rem;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: flex-end;
}
.top-phone {
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 5px;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: var(--font-heading);
    display: flex;
    align-items: baseline;
    letter-spacing: -1px;
}
.logo span { display: inline-block; }
.logo-i { color: #f47b20; }
.logo-z1 { color: #e1147a; }
.logo-z2 { color: #882b8a; }
.logo-i2 { color: #0081c6; }
.logo-text { font-size: 1rem; color: #111; margin-left: 5px; font-weight: 600; }

/* Nav */
.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
.desktop-nav a {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: lowercase;
    transition: var(--transition);
}
.desktop-nav a:hover, .desktop-nav a.active {
    color: var(--primary-color);
}

.header-phone-action {
    display: flex;
    align-items: center;
}
.phone-text {
    display: flex;
    flex-direction: column;
    text-align: right;
}
.small-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: #666;
}
.phone-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
    transition: right 0.3s ease;
    padding: 30px 20px;
}
.mobile-nav-overlay.active {
    right: 0;
}
.close-menu-btn {
    background: none; border: none;
    font-size: 2rem; position: absolute; right: 20px; top: 20px;
    cursor: pointer;
}
.mobile-nav-content ul {
    list-style: none; margin-top: 50px;
}
.mobile-nav-content li {
    margin-bottom: 20px;
}
.mobile-nav-content a {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: lowercase;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1f1f1fc9 0%, #101010e6 100%), 
                url('https://images.unsplash.com/photo-1593640495253-23196b27a87f?q=80&w=1920&auto=format&fit=crop') center/cover;
    position: relative;
    padding: 80px 0 120px;
    color: var(--white);
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.hero-content {
    flex: 1;
}
.badge-promo {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(230,0,126,0.4);
}
.hero-heading {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-legal {
    font-size: 0.75rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.4;
}
.price-callout {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    display: inline-block;
}
.price-header {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
}
.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.price-row .currency {
    font-size: 1.2rem;
    font-weight: 700;
}
.price-row .amount {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1;
}
.price-footer {
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Form Box */
.hero-form-box {
    background: var(--white);
    color: var(--text-main);
    padding: 40px 30px;
    border-radius: 20px;
    width: 380px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.hero-form-box h2 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 25px;
    color: #000;
}
.form-group {
    margin-bottom: 15px;
}
.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s;
}
.form-group input:focus {
    border-color: var(--primary-color);
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
}
.form-check input {
    margin-top: 3px;
    accent-color: var(--primary-color);
}
.form-check a {
    color: var(--primary-color);
    text-decoration: underline;
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    text-align: center;
}
.hero-scroll-indicator p {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.scroll-arrow {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Combina Section */
.combina-section {
    padding: 60px 0 20px;
    background-color: var(--light-bg);
    text-align: center;
}
.combina-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    font-size: 3.5rem;
}
.combina-plus {
    font-size: 1.5rem;
    color: #111;
    font-weight: 400;
}
.combina-divider {
    height: 2px;
    background: linear-gradient(90deg, #f47b20 0%, #00b9c6 50%, #e6007e 100%);
    width: 100%;
    max-width: 400px;
    margin: 15px auto 40px;
}
.combina-heading {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 25px;
}
.combina-text {
    font-size: 1.05rem;
    color: #444;
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.btn-black {
    background-color: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px; /* Slightly more square than standard btns */
    text-transform: lowercase;
    font-weight: 800;
    font-size: 1.1rem;
}
.btn-black:hover {
    background-color: #333;
    transform: translateY(-2px);
    color: #fff;
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}
.packages-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0 40px;
    snap-type: x mandatory;
}
.package-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    min-width: 280px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
    border-top: 5px solid var(--primary-color);
    transition: transform 0.3s;
}
.package-card:hover {
    transform: translateY(-10px);
}
.package-card.popular {
    border-top: 5px solid #E1147A; /* Different shade, or same */
    transform: scale(1.05);
}
.package-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}
.card-header { text-align: center; margin-bottom: 20px; }
.card-header h3 { font-size: 2rem; color: #111; }
.channels { font-size: 0.9rem; font-weight: 600; color: #555; }

.card-price-area {
    text-align: center;
    margin-bottom: 20px;
}
.old-price { font-size: 0.85rem; color: #888; text-decoration: line-through; }
.main-price { font-size: 3rem; font-weight: 900; font-family: var(--font-heading); color: var(--primary-color); line-height: 1; }
.price-desc { font-size: 0.8rem; font-weight: 700; color: #444; }

.package-card .btn-primary { width: 100%; margin-bottom: 10px; }
.contract-term { font-size: 0.7rem; font-weight: 800; color: #999; margin-bottom: 15px; text-transform: uppercase; }

.details-toggle {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 20px;
    display: flex; align-items: center; gap: 5px;
}
.package-features {
    list-style: none;
    font-size: 0.85rem;
    color: #444;
    width: 100%;
}
.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.package-features i { color: var(--primary-color); font-weight: bold; }

/* FAQs */
.faqs-section {
    padding: 60px 0;
    background-color: var(--white);
}
.faq-container { max-width: 800px; }
.faq-title { text-align: center; font-size: 2rem; margin-bottom: 40px; }
.accordion-item {
    border-bottom: 1px solid #eee;
}
.accordion-header {
    width: 100%;
    background: none; border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text-main);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.accordion-content p {
    padding-bottom: 20px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.accordion-item.active .accordion-content {
    max-height: 500px; /* arbitrary max height */
}
.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

/* Footer */
.main-footer {
    background: #000;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.footer-links a, .footer-nav a {
    color: #ccc;
    font-size: 0.85rem;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-links a:hover, .footer-nav a:hover {
    color: var(--primary-color);
}
.footer-nav { margin: 20px 0 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 15px;}
.footer-bottom { font-size: 0.75rem; color: #666; }

/* Sticky CTA Mobile */
.sticky-footer-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background: var(--white);
    padding: 15px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    z-index: 100;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex; justify-content: center; align-items: center;
    z-index: 1000;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.active {
    opacity: 1; pointer-events: all;
}
.modal-box {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    width: 90%; max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s;
}
.modal-overlay.active .modal-box {
    transform: translateY(0);
}
.modal-close {
    position: absolute; top: 15px; right: 15px;
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #666;
}
.modal-box h3 { font-size: 1.5rem; margin-bottom: 10px; text-align: center; }
.modal-box p { font-size: 0.9rem; color: #555; text-align: center; margin-bottom: 25px; }


/* Responsive Tools */
@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-heading { font-size: 1.8rem; }
    .price-callout { margin-bottom: 40px; }
    .packages-grid { padding-bottom: 20px; }
}
@media (max-width: 768px) {
    .header-phone-action { display: none; }
    .sticky-footer-cta { display: block; }
    .hero-form-box { width: 100%; }
    .package-card.popular { transform: scale(1); }
    .package-card.popular:hover { transform: translateY(-5px); }
    body { padding-bottom: 80px; } /* Space for sticky footer */
}

/* WhatsApp Styles */
.btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
    color: #fff;
}
.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: #FFF;
}
@media (min-width: 769px) {
    .floating-whatsapp {
        bottom: 30px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}
.testimonials-header h2 {
    font-size: 2.2rem;
    color: #111;
    margin-bottom: 10px;
}
.testimonials-header p {
    color: #666;
    font-size: 1.1rem;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: #FFF;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.stars {
    color: #FFB800; /* Gold */
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}
.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}
.avatar {
    width: 50px;
    height: 50px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}
.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}
.verified {
    font-size: 0.8rem;
    color: #25D366; /* Green check */
    font-weight: 600;
}
