/* ====== BASE STYLES ====== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Heebo', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #f8f9fa;
}

/* ====== NAVIGATION ====== */
.navbar {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    height: 50px;
    width: 180px;
    filter: invert(49%) sepia(70%) saturate(500%) hue-rotate(300deg) brightness(95%) contrast(90%);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navbar-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
}

.navbar-menu li a:hover {
    background: rgba(255,255,255,0.1);
    color: #ffd700;
}

.navbar-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.navbar-cta:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* ====== HERO SECTION ====== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    margin: 30px auto;
    background: white;
    padding: 20px;
}

.hero-image-placeholder {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* ====== CTA BUTTONS ====== */
.cta-container {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button.primary {
    background: #ffd700;
    color: #1a1a2e;
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
}

/* ====== CONTAINERS & SECTIONS ====== */
.container {
    background : linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.section {
    margin-bottom: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

h2 {
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 15px;
}

/* ====== SERVICES GRID ====== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border-right: 4px solid #667eea;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
/* ====== GALLERY ====== */
.gallery-container {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: visible;
    position: relative;
    min-height: 600px;
}

.gallery-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f1f1;
    scroll-snap-type: x mandatory;
    align-items: flex-start;
}

.gallery-scroll::-webkit-scrollbar {
    height: 8px;
}

.gallery-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.gallery-scroll::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.gallery-item {
    min-width: 320px;
    width: 320px;
    height: auto;
    min-height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    padding: 0;
}
.iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: white;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 450px;
    border-radius: 12px;
}

.iframe-container iframe {
    width: 100%;
    flex: 1;
    border: none;
    border-radius: 12px 12px 0 0;
    min-height: 400px;
    border-bottom: 1px solid #e0e0e0;
}

.visit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 0 12px 12px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.visit-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: none;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.visit-btn:active {
    transform: translateY(1px);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    background: rgba(102, 126, 234, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.nav-btn:hover {
    background: rgba(118, 75, 162, 0.9);
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.95);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0 0 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 6px;
}

/* ====== CONTACT FORM ====== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a2e;
}

input, textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #667eea;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* ====== WHY CHOOSE SECTION ====== */
.why-choose {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    border-radius: 12px;
    margin: 60px 0;
}

.why-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}

.why-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.why-list li:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(-5px);
}

.why-list li::before {
    content: '✓';
    margin-left: 10px;
    font-weight: bold;
    color: #ffd700;
}

/* ====== MAP SECTION ====== */
.map-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.location-info {
    text-align: center;
    margin-bottom: 20px;
}

.location-info p {
    font-size: 1.2rem;
    color: #1a1a2e;
    margin: 10px 0;
}

.navigate-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s;
}

.navigate-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

/* ====== PRICING SECTION ====== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.pricing-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    background: #667eea;
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
}

.package-name {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin: 25px 30px 20px;
    text-align: center;
}

.package-price {
    text-align: center;
    margin: 20px 0 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
}

.price-currency {
    font-size: 1.5rem;
    color: #667eea;
    margin-right: 5px;
}

.package-section {
    padding: 20px 30px;
    border-top: 1px solid #e0e0e0;
}

.package-section h4 {
    font-size: 1.1rem;
    color: #667eea;
    margin-bottom: 15px;
    font-weight: 600;
}

.package-features {
    list-style: none;
    padding: 0;
}

.package-features li {
    padding: 10px 0;
    padding-right: 25px;
    position: relative;
    color: #333;
    line-height: 1.6;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.problem-section {
    background: #f8f9fa;
}

.problem-section p {
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.hosting-section {
    background: #e3f2fd;
    border-right: 3px solid #2196f3;
}

.hosting-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.hosting-option {
    flex: 1;
    min-width: 120px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #2196f3;
}

.hosting-option.free {
    background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
    color: white;
    border: none;
}

.hosting-option.recommended {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.hosting-option.premium {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border: none;
}

.hosting-option strong {
    display: block;
    font-size: 1.1rem;
}

.hosting-info {
    font-size: 0.85rem;
    color: #555;
    font-style: italic;
    margin-top: 10px;
}

.package-btn {
    display: block;
    margin: 30px;
    padding: 16px 32px;
    background: white;
    color: #667eea;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #667eea;
    transition: all 0.3s;
}

.package-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.package-btn.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.package-btn.primary-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* ====== SOCIAL LINKS ====== */
.social-section {
    text-align: center;
    margin: 60px 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* ====== FOOTER ====== */
footer {
    background: #1a1a2e;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}

/* ====== WHATSAPP FLOAT ====== */
#whatsappFloat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25D366;
    color: #fff;
    padding: 12px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ====== PREVIEW LANDING PAGE SPECIFIC ====== */
.preview-landing-page body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.main-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    padding: 0 10px;
    align-items: start;
}

.form-panel {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-height: 100vh;
    overflow-y: auto;
    position: sticky;
    top: 20px;
}

.form-panel::-webkit-scrollbar {
    width: 8px;
}

.form-panel::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.form-panel::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.form-panel h2 {
    color: #1a1a2e;
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group label.required::after {
    content: '*';
    color: #e74c3c;
    margin-right: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.color-input-group {
    display: grid;
    grid-template-columns: 1fr 60px;
    gap: 10px;
    align-items: center;
}

.color-input-group input[type="color"] {
    height: 45px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
}

.form-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.form-section h3 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.preview-panel {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-height: calc(100vh - 180px);
    max-width: 800px;
}

.preview-panel h2 {
    color: #1a1a2e;
    margin-bottom: 20px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    flex-wrap: wrap;
}

.preview-tab {
    padding: 12px 24px;
    background: none;
    border: none;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
}

.preview-tab:hover {
    color: #667eea;
}

.preview-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.preview-content {
    display: none;
}

.preview-content.active {
    display: block;
}

.device-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.device-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    color: #666;
}

.device-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.device-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.iframe-container {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 600px;
}

.iframe-wrapper {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.iframe-wrapper.desktop {
    width: 100%;
    max-width: 1200px;
}

.iframe-wrapper.tablet {
    width: 768px;
    max-width: 100%;
}

.iframe-wrapper.mobile {
    width: 375px;
    max-width: 100%;
}

#previewFrame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
    background: white;
}

.seo-preview {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.seo-item {
    margin-bottom: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border-right: 4px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.seo-item strong {
    display: block;
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 700;
}

.seo-item span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    display: block;
}

.seo-google-preview {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.seo-google-preview h4 {
    color: #1a0dab;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.seo-google-preview .url {
    color: #006621;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.seo-google-preview .description {
    color: #545454;
    font-size: 0.9rem;
    line-height: 1.5;
}

.html-display {
    direction: ltr;
    background: #1e1e1e;
    color: #d4d4d4;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    max-height: 600px;
    overflow-y: auto;
}

.html-display::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.html-display::-webkit-scrollbar-track {
    background: #2d2d2d;
}

.html-display::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

.code-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.code-btn {
    padding: 10px 20px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.code-btn:hover {
    background: #764ba2;
    transform: translateY(-2px);
}

.copy-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.stop-btn {
    padding: 10px 20px;
    background: red;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    direction: rtl;
}

.preview-header h2 {
    margin: 0;
}

/* ====== LOGIN PAGE SPECIFIC ====== */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.login-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-title {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #666;
    font-size: 0.95rem;
}

.input-group {
    margin-bottom: 20px;
}

.label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 500;
    font-size: 0.95rem;
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}

.eye-button {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
}

.login-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.login-button:hover {
    transform: translateY(-2px);
}

.demo-credentials {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
}

.logout-button {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
}

.logout-button:hover {
    background: rgba(255,255,255,0.2);
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    background: transparent;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab:hover {
    color: #667eea;
}

.table-container {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.table-title {
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 600;
}

.add-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s;
}

.add-button:hover {
    transform: translateY(-2px);
}

.table-wrapper {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    padding: 15px;
    background: #f8f9fa;
    color: #1a1a2e;
    font-weight: 600;
    border-bottom: 2px solid #e0e0e0;
}

tr {
    border-bottom: 1px solid #e0e0e0;
}

tbody tr:hover {
    background: #f8f9fa;
}

td {
    padding: 15px;
    color: #333;
}

.actions {
    display: flex;
    gap: 8px;
}

.edit-button {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.delete-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.link {
    color: #667eea;
    text-decoration: none;
}

.link:hover {
    text-decoration: underline;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-title {
    font-size: 1.5rem;
    color: #1a1a2e;
    font-weight: 600;
}

.close-button {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    font-size: 24px;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px 25px;
    border-top: 1px solid #e0e0e0;
}

.cancel-button {
    background: #f0f0f0;
    color: #333;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
}

.save-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* ====== ACCESSIBILITY WIDGET ====== */
.accessibility-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 10001;
    font-family: 'Assistant', sans-serif;
}

.accessibility-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 28px;
}

.accessibility-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.accessibility-button:focus {
    outline: 3px solid #FFD700;
    outline-offset: 2px;
}

.accessibility-panel {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    padding: 20px;
    display: none;
    max-height: 500px;
    overflow-y: auto;
    direction: rtl;
}

.accessibility-panel.open {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.accessibility-panel h3 {
    margin: 0 0 15px 0;
    color: #0090FF;
    font-size: 1.3em;
    text-align: center;
    border-bottom: 2px solid #0090FF;
    padding-bottom: 10px;
}

.accessibility-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accessibility-option:hover {
    background: #e9ecef;
    transform: translateX(-3px);
}

.accessibility-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
    font-size: 1em;
}

.accessibility-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.accessibility-option .icon {
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.text-size-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.text-size-btn {
    padding: 10px 20px;
    border: 2px solid #0090FF;
    background: white;
    color: #0090FF;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.text-size-btn:hover {
    background: #0090FF;
    color: white;
}

.reset-button {
    width: 100%;
    padding: 12px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.2s ease;
}

.reset-button:hover {
    background: #c0392b;
}

/* === Accessibility Features Styles === */
body.high-contrast {
    filter: contrast(1.5) !important;
}

body.grayscale {
    filter: grayscale(100%) !important;
}

body.invert-colors {
    filter: invert(1) hue-rotate(180deg) !important;
}

body.large-text * {
    font-size: 120% !important;
    line-height: 1.8 !important;
}

body.larger-text * {
    font-size: 140% !important;
    line-height: 2 !important;
}

body.highlight-links a {
    background: yellow !important;
    color: black !important;
    padding: 2px 4px !important;
    border-radius: 3px !important;
}

body.readable-font * {
    font-family: Arial, sans-serif !important;
}

body.text-spacing * {
    letter-spacing: 0.12em !important;
    word-spacing: 0.16em !important;
}

*:focus {
    outline: 3px solid #FFD700 !important;
    outline-offset: 2px !important;
}

body.hide-images img:not(.site-logo-right):not(.site-logo-left) {
    opacity: 0.1 !important;
}

body.cursor-large {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32"><circle cx="16" cy="16" r="10" fill="black"/><circle cx="16" cy="16" r="8" fill="white"/></svg>') 16 16, auto !important;
}

body.cursor-large * {
    cursor: inherit !important;
}

.close-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-panel:hover {
    background: #c0392b;
}

.big-text {
    font-size: 1.5em;
    font-weight: 800;
    display: inline-block;
    margin-top: 5px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translate(-50%, -20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 1200px) {
    .main-content {
        grid-template-columns: 1fr;
    }

    .form-panel {
        max-height: none;
        position: relative;
        top: 0;
    }

    .iframe-wrapper.tablet,
    .iframe-wrapper.mobile {
        width: 100%;
    }
}

/* ====== COOKIES NOTIFICATION ====== */
.cookies-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    border: 2px solid #667eea;
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

.cookies-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookies-text h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookies-text p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.cookies-links {
    margin-top: 15px;
    font-size: 0.9rem;
}

.cookies-links a {
    color: #667eea;
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
}

.cookies-links a:hover {
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookies-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    min-width: 140px;
}

.accept-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
}

.accept-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.reject-btn {
    background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
    color: white;
}

.reject-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.settings-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.settings-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Cookies Modal */
.cookies-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookies-modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookies-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #e0e0e0;
}

.cookies-modal-header h3 {
    color: #667eea;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-modal-btn:hover {
    background: #f0f0f0;
    color: #333;
}

.cookies-modal-body {
    padding: 25px;
}

.cookie-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
}

.cookie-category-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    flex-shrink: 0;
    margin-top: 5px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .cookie-toggle-slider {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-toggle-slider {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    cursor: not-allowed;
}

.cookie-category-info h4 {
    color: #333;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.cookie-category-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookies-modal-footer {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.save-settings-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    flex: 2;
}

.save-settings-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.accept-all-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #66BB6A 100%);
    color: white;
    flex: 1;
}

.accept-all-btn:hover {
    background: linear-gradient(135deg, #388E3C 0%, #4CAF50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.reject-all-btn {
    background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
    color: white;
    flex: 1;
}

.reject-all-btn:hover {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

/* Responsive Design for Cookies */
@media (max-width: 768px) {
    .cookies-notification {
        bottom: 10px;
        right: 10px;
        left: 10px;
        padding: 15px;
    }
    
    .cookies-content {
        gap: 15px;
    }
    
    .cookies-text h3 {
        font-size: 1.1rem;
    }
    
    .cookies-text p {
        font-size: 0.85rem;
    }
    
    .cookies-buttons {
        flex-direction: column;
    }
    
    .cookies-btn {
        width: 100%;
        min-width: unset;
        padding: 14px 20px;
    }
    
    .cookie-category {
        padding: 15px;
    }
    
    .cookie-toggle {
        width: 50px;
        height: 28px;
    }
    
    .cookie-toggle-slider:before {
        height: 20px;
        width: 20px;
    }
    
    input:checked + .cookie-toggle-slider:before {
        transform: translateX(22px);
    }
    
    .cookies-modal-footer {
        flex-direction: column;
    }
    
    .cookies-modal-footer .cookies-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        padding: 30px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    }

    .navbar-menu.active {
        right: 0;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-menu li {
        width: 100%;
    }

    .navbar-menu li a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    #whatsappFloat {
        right: 12px;
        bottom: 12px;
        padding: 10px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .cta-container {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

	.gallery-container {
        padding: 30px 15px;
        min-height: 550px;
    }

    .gallery-scroll {
        padding: 15px 5px;
        gap: 15px;
    }

    .gallery-item {
        min-width: calc(100vw - 100px);
        width: calc(100vw - 100px);
        min-height: 450px;
    }
    
    .iframe-container {
        min-height: 400px;
    }
    
    .iframe-container iframe {
        min-height: 350px;
    }
    
    .visit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }	

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .gallery-nav {
        padding: 0 5px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .container {
        padding: 40px 15px;
    }

    .package-name {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    .form-panel,
    .preview-panel {
        max-width: 100vw;
        padding: 20px;
    }

    .preview-tabs {
        gap: 5px;
    }

    .preview-tab {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .device-selector {
        gap: 5px;
    }

    .device-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    #previewFrame {
        height: 600px;
    }
}