/* CSS Variables - Must be defined first */
:root {
    /* Default light theme values - will be overridden by JavaScript */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #333333;
    --text-secondary: #666666;
    --border-color: #e9ecef;
    --accent-color: #007bff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-light: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-heavy: 0 20px 40px rgba(0,0,0,0.15);
    --card-bg: #ffffff;
    --input-bg: #ffffff;
    --hover-bg: #f8f9fa;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--card-bg);
    box-shadow: var(--shadow-light);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 40px;
    width: auto;
    filter: brightness(1) contrast(1.2);
    /* Ensure logo visibility on all themes */
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-primary);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    /* Ensure text visibility */
    filter: contrast(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    /* Ensure link visibility */
    filter: contrast(1.1);
}

.nav-link:hover {
    color: var(--accent-color);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    /* Ensure mobile menu visibility */
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #333;
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 5px;
}

.slide-title {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.package-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.package-card:hover .package-image img {
    transform: scale(1.05);
}

.package-content {
    padding: 2rem;
}

.package-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.package-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.package-features {
    text-align: left;
    margin-bottom: 2rem;
}

.package-features p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.package-features i {
    color: #28a745;
    width: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: var(--shadow-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn:hover {
    background: var(--accent-color);
    filter: brightness(1.1) contrast(1.05);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--text-secondary);
    color: var(--bg-primary);
}

.btn-secondary:hover {
    background: var(--text-secondary);
    filter: brightness(0.9) contrast(1.05);
    transform: translateY(-1px);
}

/* Forms */
.form-container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #007bff;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    /* Ensure heading visibility */
    filter: contrast(1.2);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    /* Ensure link visibility */
    filter: contrast(1.1);
}

.footer-section a:hover {
    color: var(--accent-color);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.footer-section p {
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    /* Ensure text visibility */
    filter: contrast(1.1);
}

.footer-section i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    /* Ensure footer text visibility */
    filter: contrast(1.1);
}

/* Alert Messages */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   TRADE BUSINESS SPECIFIC STYLES
   ========================================================================== */

/* Trade Hero Section */
.trade-hero {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.trade-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
    color: white;
}

.hero-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.hero-features .feature-item i {
    color: #10b981;
    font-size: 16px;
}

/* Trade Features */
.trade-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trade-features .feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trade-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.trade-features .feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.trade-features .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.trade-features .feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.trade-features .feature-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trade-features .feature-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.feature-list i {
    color: #10b981;
    font-size: 12px;
}

/* Trade Services Section */
.service-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-secondary);
}

.category-item:hover,
.category-item.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.trade-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-enhanced {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.service-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-image-enhanced {
    height: 200px;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.service-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-large i {
    font-size: 4rem;
    color: white;
    opacity: 0.9;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-enhanced:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon i {
    font-size: 3rem;
    color: white;
}

.service-content-enhanced {
    padding: 2rem;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-name-enhanced {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.service-price-enhanced {
    text-align: right;
    color: var(--accent-color);
    font-weight: 700;
}

.service-price-enhanced .currency {
    font-size: 1.2rem;
}

.service-price-enhanced .amount {
    font-size: 1.8rem;
}

.service-price-enhanced .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.service-description-enhanced {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features-enhanced h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-features-enhanced .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-features-enhanced .feature-item i {
    color: #10b981;
    font-size: 12px;
}

.service-metrics {
    display: flex;
    justify-content: space-between;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.service-metrics .metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

.metric-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.service-actions {
    display: flex;
    gap: 12px;
    margin-top: 1.5rem;
}

.btn-service-primary {
    flex: 1;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-service-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-service-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-service-secondary:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.trade-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    margin-top: 3rem;
}

.trade-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.trade-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Trade About Section */
.trade-about .about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trade-achievements {
    margin: 2rem 0;
}

.achievement-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon i {
    color: white;
    font-size: 1.2rem;
}

.achievement-content h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.achievement-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.trade-visual-element {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.visual-layer {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.visual-layer:nth-child(1) {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.visual-layer:nth-child(2) {
    top: 60px;
    right: 40px;
    animation-delay: 1s;
}

.visual-layer:nth-child(3) {
    bottom: 80px;
    left: 30px;
    animation-delay: 2s;
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s ease-in-out infinite;
}

.visual-layer i,
.visual-center i {
    color: white;
    font-size: 1.5rem;
}

.visual-center i {
    font-size: 2.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Industry Coverage */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.industry-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.industry-icon i {
    font-size: 1.8rem;
    color: white;
}

.industry-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.industry-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Global Coverage */
.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.coverage-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.coverage-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.coverage-flag {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coverage-flag i {
    color: white;
    font-size: 1.5rem;
}

.coverage-info h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.coverage-info p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 1.5;
}

.coverage-metrics {
    display: flex;
    gap: 1rem;
}

.coverage-metrics span {
    background: var(--bg-secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Trade Contact Section */
.trade-contact .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-header {
    margin-bottom: 2rem;
}

.contact-header h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.trade-contact .contact-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trade-contact .contact-item:hover {
    box-shadow: var(--shadow-light);
    transform: translateY(-2px);
}

.trade-contact .contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.trade-contact .contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-note {
    color: var(--text-secondary);
    font-size: 13px;
    margin: 8px 0;
    font-style: italic;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
}

.business-hours {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.business-hours h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hours-list {
    space-y: 8px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 14px;
}

.hours-item:last-child {
    border-bottom: none;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.form-header p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form-trade {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form-trade .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-trade label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.contact-form-trade input,
.contact-form-trade select,
.contact-form-trade textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--input-bg);
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.contact-form-trade input:focus,
.contact-form-trade select:focus,
.contact-form-trade textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-checkbox label {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

.form-note {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Trade Newsletter */
.trade-newsletter {
    background: var(--gradient-primary);
    color: white;
}

.trade-newsletter .newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.newsletter-icon i {
    font-size: 1.5rem;
    color: white;
}

.trade-newsletter h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.trade-newsletter p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.newsletter-feature i {
    color: #10b981;
    font-size: 12px;
}

.form-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
}

.form-input-group input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
}

.form-input-group button {
    padding: 14px 24px;
    border-radius: 8px;
    white-space: nowrap;
}

.newsletter-note {
    text-align: center;
    font-size: 12px;
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .slide-content {
        left: 20px;
        right: 20px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Mobile responsive for page images */
    div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    div[style*="flex: 0 0"] {
        flex: none !important;
        max-width: 100% !important;
    }
    
    /* Map responsive */
    iframe {
        width: 100% !important;
        height: 300px !important;
    }

    /* Trade-specific mobile responsive styles */
    .hero-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats .stat-item {
        flex: 1;
        min-width: 120px;
    }

    .hero-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .trade-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .category-item {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .trade-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-service-secondary {
        text-align: center;
        justify-content: center;
    }

    .trade-about .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trade-visual-element {
        width: 250px;
        height: 250px;
    }

    .visual-center {
        width: 80px;
        height: 80px;
    }

    .visual-layer {
        width: 50px;
        height: 50px;
    }

    .industry-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .coverage-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .coverage-metrics {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trade-contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-trade {
        padding: 1.5rem;
    }

    .trade-newsletter .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .form-input-group button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .service-card-enhanced {
        margin: 0 10px;
    }

    .service-content-enhanced {
        padding: 1.5rem;
    }

    .service-price-enhanced .amount {
        font-size: 1.5rem;
    }

    .trade-cta {
        padding: 2rem 1rem;
    }

    .trade-cta h3 {
        font-size: 1.5rem;
    }

    .contact-form-trade {
        padding: 1rem;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
    }

    .achievement-icon {
        margin: 0 auto 1rem;
    }
}

/* Admin Panel Specific Styles */
.admin-header {
    background: #343a40;
    color: white;
}

.admin-nav a {
    color: white;
}

.admin-nav a:hover {
    color: #007bff;
}

.admin-sidebar {
    background: #f8f9fa;
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
    border-right: 1px solid #dee2e6;
}

.admin-content {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}

.table-container {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
}

.table tbody tr:hover {
    background: #f8f9fa;
}

.btn-sm {
    padding: 5px 15px;
    font-size: 0.9rem;
}

/* ================================
   ENHANCED HOMEPAGE STYLES
   ================================ */

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Theme variables are now defined at the top of the file */

.header {
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Theme-aware text colors */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
}

p, span, div {
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--accent-color);
}

/* Cards and containers */
.card, .package-card, .feature-card, .contact-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

/* Form elements */
input, textarea, select {
    background: var(--input-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent-color);
}

/* Global Button Theme Integration */
.btn {
    background: var(--accent-color);
    color: white;
    border: none;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--accent-color);
    filter: brightness(1.1) contrast(1.05);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Additional Button Types with Theme Integration */
.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    filter: brightness(1.1);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
    text-shadow: none;
}

.btn-warning:hover {
    background: #e0a800;
    filter: brightness(1.1);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    filter: brightness(1.1);
}

.btn-info {
    background: var(--accent-color);
    color: white;
}

.btn-info:hover {
    background: var(--accent-color);
    filter: brightness(1.1);
}

.btn-light {
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-shadow: none;
    border: 1px solid var(--border-color);
}

.btn-light:hover {
    background: var(--hover-bg);
    filter: brightness(0.95);
}

.btn-dark {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-dark:hover {
    background: var(--text-primary);
    filter: brightness(0.9);
}

/* Submit buttons and form buttons */
input[type="submit"],
button[type="submit"] {
    background: var(--accent-color) !important;
    color: white !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: var(--shadow-light) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    filter: brightness(1.1) contrast(1.05) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-medium) !important;
}

/* Generic button element styling */
button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

button:hover {
    filter: brightness(1.1) contrast(1.05);
    transform: translateY(-1px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Hero Section */
.hero-enhanced {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particles::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(-60px) rotate(240deg); }
}

.slider-enhanced {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-enhanced {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dynamic overlay based on data-overlay attribute */
.slide-enhanced[data-overlay="none"]::before {
    display: none;
}

.slide-enhanced[data-overlay="light"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.05) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 2;
}

.slide-enhanced[data-overlay="medium"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.slide-enhanced[data-overlay="dark"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 2;
}

/* When no text is present, ensure clear image */
.slide-enhanced[data-has-text="false"]::before {
    display: none !important;
}

/* Additional specificity for clear images */
.slide-enhanced[data-has-text="false"][data-overlay="none"]::before,
.slide-enhanced[data-has-text="false"][data-overlay="light"]::before,
.slide-enhanced[data-has-text="false"][data-overlay="medium"]::before,
.slide-enhanced[data-has-text="false"][data-overlay="dark"]::before {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Force clear images when overlay is set to none */
.slide-enhanced[data-overlay="none"]::before {
    display: none !important;
}

.slide-enhanced.active {
    opacity: 1;
}

/* Enhanced Transition Effects */
.slider-enhanced[data-transition="fade"] .slide-enhanced {
    transition: opacity 1.5s ease-in-out;
}

.slider-enhanced[data-transition="slide"] .slide-enhanced {
    transform: translateX(100%);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease-in-out;
}

.slider-enhanced[data-transition="slide"] .slide-enhanced.active {
    transform: translateX(0);
}

.slider-enhanced[data-transition="slide"] .slide-enhanced:not(.active) {
    transform: translateX(-100%);
}

.slider-enhanced[data-transition="zoom"] .slide-enhanced {
    transform: scale(0.8);
    transition: transform 1.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 1s ease-in-out;
}

.slider-enhanced[data-transition="zoom"] .slide-enhanced.active {
    transform: scale(1);
}

.slider-enhanced[data-transition="rotate"] .slide-enhanced {
    transform: rotate(10deg) scale(0.8);
    transition: transform 1.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 1.1s ease-in-out;
}

.slider-enhanced[data-transition="rotate"] .slide-enhanced.active {
    transform: rotate(0deg) scale(1);
}

.slider-enhanced[data-transition="flip"] .slide-enhanced {
    transform: rotateY(90deg) scale(0.9);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease-in-out;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.slider-enhanced[data-transition="flip"] .slide-enhanced.active {
    transform: rotateY(0deg) scale(1);
}

.slide-enhanced img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.slide-content-enhanced,
.hero-content-fallback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: white;
    padding: 3rem 2rem;
    width: 90%;
    max-width: 1200px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 
        3px 3px 8px rgba(0,0,0,1),
        0 0 20px rgba(0,0,0,0.8),
        -1px -1px 2px rgba(0,0,0,0.9);
    line-height: 1.2;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.1);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-shadow: 
        2px 2px 6px rgba(0,0,0,1),
        0 0 15px rgba(0,0,0,0.7);
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    display: inline-block;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 
        2px 2px 6px rgba(0,0,0,1),
        0 0 12px rgba(0,0,0,0.7);
    color: #ffffff;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.2rem 1.8rem;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-glow {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    border: none;
}

.btn-primary-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    filter: brightness(1.1) contrast(1.05);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 30px;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.95);
    color: var(--accent-color);
    border-color: rgba(255,255,255,1);
    transform: translateY(-2px) scale(1.02);
    text-shadow: none;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
}

/* Features Section */
.features-section {
    background: var(--bg-secondary);
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Enhanced Packages Section */
.packages-section {
    padding: 5rem 0;
    background: var(--card-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.packages-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card-enhanced {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
}

.package-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
}

.package-image-enhanced {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.package-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.package-card-enhanced:hover .package-image-enhanced img {
    transform: scale(1.1);
}

.package-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.package-card-enhanced:hover .package-overlay {
    opacity: 1;
}

.package-icons {
    display: flex;
    gap: 1rem;
}

.package-icons i {
    width: 50px;
    height: 50px;
    background: white;
    color: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-icons i:hover {
    transform: scale(1.1);
    background: #007bff;
    color: white;
}

.package-content-enhanced {
    padding: 2rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.package-name-enhanced {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.package-price-enhanced {
    text-align: right;
    color: var(--accent-color);
    font-weight: 700;
}

.package-price-enhanced .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.package-price-enhanced .amount {
    font-size: 2rem;
}

.package-description-enhanced {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features-enhanced {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 15px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    border: none;
}

.btn-package:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    filter: brightness(1.1) contrast(1.05);
}

.btn-package i {
    transition: transform 0.3s ease;
}

.btn-package:hover i {
    transform: translateX(5px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--border-color);
}

.empty-state h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-element {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: var(--shadow-heavy);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--card-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.contact-item:hover {
    background: var(--hover-bg);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-color);
    filter: brightness(1.2);
}

.contact-form-container {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-form-quick .form-group {
    margin-bottom: 1.5rem;
}

.contact-form-quick input,
.contact-form-quick textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--input-bg);
    color: var(--text-primary);
}

.contact-form-quick input:focus,
.contact-form-quick textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(var(--accent-color), 0.1);
}

.contact-form-quick input::placeholder,
.contact-form-quick textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.contact-form-quick button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.newsletter-text p {
    opacity: 0.9;
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    min-width: 300px;
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.newsletter-form input::placeholder {
    color: var(--text-secondary);
}

.newsletter-form .btn {
    padding: 15px 30px;
    border-radius: 50px;
    white-space: nowrap;
    background: white;
    color: var(--accent-color);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text .section-title {
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .theme-toggle {
        top: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        text-shadow: 
            3px 3px 10px rgba(0,0,0,0.9),
            0 0 25px rgba(0,0,0,0.7),
            2px 2px 6px rgba(0,0,0,1);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 
            2px 2px 8px rgba(0,0,0,0.9),
            0 0 20px rgba(0,0,0,0.6),
            1px 1px 4px rgba(0,0,0,1);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0.8rem 1.2rem;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(8px);
        border-radius: 8px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-glow,
    .btn-outline {
        width: 200px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1rem;
    }
    
    .package-card-enhanced {
        margin: 0 10px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
}