/*
Theme Name: teknofixiptv.com IPTV
Theme URI: https://teknofixiptv.com
Author: teknofixiptv.com
Author URI: https://teknofixiptv.com
Description: Almanya’daki Türk kullanıcılar için özel hazırlanmış, güvenilir IPTV satış teması.
Version: 1.0.0
Text Domain: iptv-master
*/

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

:root {
    --primary: #181818;
    --primary-hover: #060606;
    --accent: #CCCCCC;
    --bg: #F6F6F6;
    --text: #1B1B1B;
    --border: #D8D8D8;

    /* Eski isimlerle geriye dönük uyum */
    --primary-green: var(--primary);
    --dark-green: var(--primary-hover);
    --light-green: var(--accent);
    --text-dark: var(--text);
    --text-light: var(--accent);
    --bg-light: var(--bg);
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.site-header {
    background: var(--primary);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo .custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s;
}

.logo-text:hover {
    color: var(--white);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--accent);
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--white);
}

.header-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 26, 0.3);
}

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

.btn-secondary:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Hero Slider Section */
.hero-slider-section {
    position: relative;
    min-height: 600px;
    background: radial-gradient(circle at top, var(--primary-hover) 0%, var(--primary) 45%, #000000 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slider-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0 8rem;
}

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

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-accent-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

/* Wave Separator */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 3;
    overflow: hidden;
}

.wave-separator svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Package Selection Section */
.package-selection-section {
    padding: 4rem 0 2rem;
    background: var(--white);
}

.package-selection-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.package-selection-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.package-type-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.package-type-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: 2px solid var(--text-dark);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 180px;
}

.package-type-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.package-type-btn.active {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

.package-group {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

/* ========== Packages Section (euronetiptv uyumlu) ========== */
.packages {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid transparent;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(66, 153, 225, 0.15);
    border-color: #4299e1;
}

.package-card.featured {
    background: linear-gradient(135deg, #4a90e2, #667eea);
    color: white;
}

.package-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-card.featured h3,
.package-card.featured .price,
.package-card.featured .package-features,
.package-card.featured .package-subheadline,
.package-card.featured .old-price,
.package-card.featured .server-title {
    color: white;
}

.package-card .package-subheadline {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0.75rem;
}

.package-card .old-price {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.package-card .old-price del {
    opacity: 0.9;
}

.package-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-card .price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    margin-left: 0.25rem;
}

.package-card.featured .price {
    color: #ffc107;
}

.package-card.featured .price span {
    color: rgba(255,255,255,0.95);
}

.package-card .server-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.package-card.featured .server-title {
    color: #ffc107;
}

.package-features {
    margin-bottom: 2rem;
    text-align: left;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.package-features .check {
    color: #4299e1;
    font-weight: 900;
    flex-shrink: 0;
}

.package-card.featured .package-features .check {
    color: #ffc107;
}

.package-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.package-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.package-card.featured .package-button {
    background: var(--accent);
    color: var(--primary);
}

.package-card.featured .package-button:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.45);
}

.package-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
}

/* Package Cards Grid */
.packages-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card-item {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.package-featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.package-card-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.package-card-users {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
}

.package-card-price {
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.package-card-currency {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-card-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
}

.package-card-featured-icon {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

/* Countries Modal - footer ve sabit butonların üstünde */
.countries-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.countries-modal.is-open {
    display: flex;
}

.countries-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.countries-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 900px;
    width: 100%;
    margin: 0 20px;
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem 2.25rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.countries-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.countries-modal-dialog h2 {
    margin-bottom: 0.25rem;
}

.countries-modal-subtitle {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Ülkeler sayfası: her satırda 3 kutu, kart düzeni */
.countries-page-content .countries-page-grid,
.countries-page-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem;
    width: 100%;
}

.countries-page-grid .country-card {
    min-width: 0; /* grid item taşmasını önler */
}

@media (max-width: 991px) {
    .countries-page-content .countries-page-grid,
    .countries-page-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 575px) {
    .countries-page-content .countries-page-grid,
    .countries-page-grid {
        grid-template-columns: 1fr !important;
    }
}

.country-card {
    display: block;
    border-radius: 12px;
    border: 1px solid #e1e5eb;
    text-decoration: none;
    color: var(--text-dark);
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    overflow: hidden;
}

.country-card:hover {
    background: #fff;
    border-color: #4299e1;
    box-shadow: 0 6px 20px rgba(66,153,225,0.15);
    transform: translateY(-2px);
}

.country-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
}

/* Bayrak alanı: sabit yükseklik, SVG büyümesin */
.country-flag-wrap {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.country-flag {
    max-width: 80px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
}

.country-flag-placeholder {
    display: block;
    width: 80px;
    height: 60px;
    background: #e1e5eb;
    border-radius: 4px;
}

.country-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.country-url {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

.countries-empty {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .countries-modal-dialog {
        padding: 1.5rem 1.5rem 1.75rem;
    }
}

.package-card-features {
    flex: 1;
    margin-bottom: 1.5rem;
}

.package-card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-card-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.package-card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.package-card-action {
    margin-top: auto;
}

.package-card-btn {
    width: 100%;
    text-align: center;
}

/* Package Filter Buttons */
.package-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.package-filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--text-dark);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.package-filter-btn:hover {
    background: var(--bg-light);
}

.package-filter-btn.active {
    background: var(--text-dark);
    color: var(--white);
    border-color: var(--text-dark);
}

/* Packages Page Styles */
.packages-page-wrapper {
    min-height: 100vh;
}

.packages-page-hero {
    background: linear-gradient(135deg, var(--primary-hover) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.packages-page-hero .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.packages-page-hero .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.packages-page-content {
    padding: 4rem 0;
    background: var(--bg);
}

.packages-seo-text {
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

/* Package List Styles */
.package-list {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.package-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.3s;
}

.package-list-item:last-child {
    border-bottom: none;
}

.package-list-item:hover {
    background: var(--bg-light);
}

.package-list-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package-list-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.package-list-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
}

.package-currency {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.package-featured-icon {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.package-list-action {
    margin-left: 2rem;
}

.btn-purchase {
    background: #dc3545;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-purchase:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-purchase.disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-purchase.disabled:hover {
    transform: none;
    box-shadow: none;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.package-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
    margin: 1rem 0;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.package-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Process Steps Section */
.process-steps-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.process-step-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.process-step-icon svg {
    transition: transform 0.3s;
}

.process-step:hover .process-step-icon svg {
    transform: scale(1.1);
}

.process-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-step-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-description {
    color: var(--text-light);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.whatsapp-float svg {
    width: 50px;
    height: 50px;
}

/* Footer */
.site-footer {
    background: var(--primary-hover);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--accent);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .hero-accent-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-slider-section {
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .package-selection-title {
        font-size: 2rem;
    }
    
    .package-type-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .package-type-btn {
        width: 100%;
    }
    
    .package-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .package-list-content {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .package-list-price {
        margin-left: 0;
        margin-top: 0.5rem;
    }
    
    .package-list-action {
        margin-left: 0;
        width: 100%;
    }
    
    .btn-purchase {
        width: 100%;
        text-align: center;
    }
    
    .process-steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .process-step-icon {
        height: 80px;
    }
    
    .process-step-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .main-nav {
        display: none;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .package-card {
        padding: 1.5rem 1.25rem;
    }

    .header-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-container {
        flex-wrap: wrap;
    }
    
    .site-logo .custom-logo {
        max-height: 40px;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 40px;
        height: 40px;
    }
    
    .packages-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-filter-buttons {
        flex-direction: column;
    }
    
    .package-filter-btn {
        width: 100%;
    }
    
    .packages-page-hero .page-title {
        font-size: 2rem;
    }
}

