/* ============================================
   SCRAP SELL WEBSITE - MAIN STYLES
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */

:root {
    /* Colors - Light Theme */
    --primary: #2d8a4e;
    --primary-dark: #1f6b3a;
    --primary-light: #e8f5ee;
    --secondary: #f5a623;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    
    --bg: #ffffff;
    --bg-alt: #f8f9fa;
    --bg-card: #ffffff;
    --text: #1a1a2e;
    --text-muted: #6c757d;
    --text-light: #8a8a9a;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    
    --body-bg: #f5f7fa;
    --header-bg: #ffffff;
    --footer-bg: #1a1a2e;
    --footer-text: #ffffff;
    
    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition: 0.3s ease;
}

/* ============================================
   DARK THEME
   ============================================ */

[data-theme="dark"] {
    --bg: #121212;
    --bg-alt: #1e1e2e;
    --bg-card: #1e1e2e;
    --text: #e8e8f0;
    --text-muted: #a0a0b0;
    --text-light: #7a7a8a;
    --border: #2a2a3e;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.5);
    --body-bg: #0d0d1a;
    --header-bg: #1a1a2e;
    --footer-bg: #0d0d1a;
    --footer-text: #e8e8f0;
    --primary-light: #1a3a2e;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height);
    color: var(--text);
    background-color: var(--body-bg);
    transition: background-color var(--transition), color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    padding-left: var(--spacing-lg);
}

/* ============================================
   CONTAINER
   ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-bottom: var(--spacing-md);
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    gap: var(--spacing-sm);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.btn-secondary {
    background: var(--secondary);
    color: #ffffff;
}

.btn-secondary:hover {
    background: #d4951f;
    color: #ffffff;
}

.btn-success {
    background: var(--success);
    color: #ffffff;
}

.btn-success:hover {
    background: #1e7e34;
    color: #ffffff;
}

.btn-danger {
    background: var(--danger);
    color: #ffffff;
}

.btn-danger:hover {
    background: #bd2130;
    color: #ffffff;
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #ffffff;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 6px 16px;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
    background: var(--header-bg);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background var(--transition), border var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text);
    font-weight: 500;
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: color var(--transition);
}

.nav-list a:hover {
    color: var(--primary);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.theme-toggle {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 1.25rem;
}

.theme-toggle:hover {
    background: var(--border);
    transform: rotate(20deg);
}

[data-theme="dark"] .icon-light { display: none; }
[data-theme="light"] .icon-dark { display: none; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-sm);
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: var(--spacing-md) 0;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: var(--spacing-sm);
}

.mobile-nav ul li a {
    display: block;
    padding: var(--spacing-sm) 0;
    color: var(--text);
    font-weight: 500;
}

.mobile-nav ul li a:hover {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-alt);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
    margin-bottom: var(--spacing-sm);
    font-size: 1.125rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 2.25rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-alt);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--spacing-md);
}

.service-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.service-price {
    margin-bottom: var(--spacing-sm);
}

.service-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .unit {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.service-price .price-na {
    color: var(--text-muted);
    font-style: italic;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.service-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.service-actions .btn {
    flex: 1;
}

.section-footer {
    text-align: center;
    margin-top: var(--spacing-xl);
}
/* ============================================
   IMPROVED SERVICE CARDS WITH IMAGES
   ============================================ */

.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-alt);
}

.service-image-wrapper .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image-wrapper .service-image {
    transform: scale(1.08);
}

/* Image Placeholder */
.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--bg-alt));
    color: var(--primary);
}

.service-image-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 8px;
}

.service-image-placeholder .placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Price Badge on Image */
.service-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(45, 138, 78, 0.92);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.95rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.service-price-badge .price {
    color: #ffffff;
    font-size: 1rem;
}

.service-price-badge .unit {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
}

/* Service Card Content */
.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px var(--shadow);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--shadow-hover);
}

.service-content {
    padding: 16px 18px 18px;
}

.service-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-actions {
    display: flex;
    gap: 8px;
}

.service-actions .btn {
    flex: 1;
    font-size: 0.8rem;
    padding: 8px 12px;
}
/* ============================================
   FAQ SECTION - COMPLETE FIX
   ============================================ */

.faq-section {
    padding: 60px 0;
    background: var(--bg, #f5f7fa);
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text, #1a1a2e);
    position: relative;
}

.faq-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2d8a4e;
    margin: 10px auto 0;
    border-radius: 2px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-color: #2d8a4e;
}

.faq-item .faq-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 8px;
}

.faq-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.faq-item h3 .question-mark {
    color: #2d8a4e;
    font-weight: 700;
    margin-right: 4px;
}

.faq-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   FAQ SECTION - DARK THEME
   ============================================ */

[data-theme="dark"] .faq-section {
    background: #0d0d1a;
}

[data-theme="dark"] .faq-section h2 {
    color: #e8e8f0;
}

[data-theme="dark"] .faq-item {
    background: #1e1e2e;
    border-color: #2a2a3e;
}

[data-theme="dark"] .faq-item h3 {
    color: #e8e8f0;
}

[data-theme="dark"] .faq-item p {
    color: #a0a0b0;
}

[data-theme="dark"] .faq-item:hover {
    border-color: #2d8a4e;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ============================================
   FAQ SECTION - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }
    
    .faq-item {
        padding: 18px 20px;
    }
    
    .faq-section h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section h2 {
        font-size: 1.4rem;
    }
    
    .faq-item {
        padding: 14px 16px;
    }
    
    .faq-item .faq-icon {
        font-size: 1.4rem;
    }
}
/* ============================================
   ABOUT PAGE - COMPLETE STYLES
   ============================================ */

.about-section {
    padding: 60px 0 80px;
    background: var(--bg, #ffffff);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* About Hero / Banner */
.about-hero {
    background: linear-gradient(135deg, var(--primary, #2d8a4e), var(--primary-dark, #1f6b3a));
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '♻️';
    position: absolute;
    right: -30px;
    bottom: -30px;
    font-size: 200px;
    opacity: 0.08;
}

.about-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* About Text Content */
.about-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
    margin-top: 40px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
}

.about-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--primary, #2d8a4e);
    border-radius: 2px;
}

.about-text h2:first-of-type {
    margin-top: 0;
}

.about-text p {
    color: var(--text-muted, #6c757d);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: var(--bg-card, #ffffff);
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid var(--border, #e0e0e0);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow, rgba(0,0,0,0.08));
    border-color: var(--primary, #2d8a4e);
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary, #2d8a4e);
    display: block;
}

.stat-box .stat-label {
    color: var(--text-muted, #6c757d);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 4px;
}

/* About Lists */
.about-text ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}

.about-text ul li {
    padding: 10px 0 10px 40px;
    color: var(--text-muted, #6c757d);
    font-size: 1rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--border, #e0e0e0);
    position: relative;
    transition: all 0.3s ease;
}

.about-text ul li:last-child {
    border-bottom: none;
}

.about-text ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 1.1rem;
}

.about-text ul li strong {
    color: var(--text, #1a1a2e);
}

.about-text ul li:hover {
    padding-left: 48px;
    color: var(--text, #1a1a2e);
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 50px 40px;
    background: var(--bg-alt, #f8f9fa);
    border-radius: 16px;
    margin-top: 50px;
    border: 1px solid var(--border, #e0e0e0);
    transition: all 0.3s ease;
}

.about-cta:hover {
    box-shadow: 0 8px 30px var(--shadow, rgba(0,0,0,0.08));
}

.about-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text, #1a1a2e);
    margin-bottom: 12px;
}

.about-cta p {
    color: var(--text-muted, #6c757d);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.about-cta .btn {
    min-width: 200px;
}

/* Mission Vision Boxes */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 30px 0;
}

.mission-box,
.vision-box {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border, #e0e0e0);
    background: var(--bg-card, #ffffff);
    transition: all 0.3s ease;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px var(--shadow, rgba(0,0,0,0.08));
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mission-box h3 .icon,
.vision-box h3 .icon {
    font-size: 1.8rem;
}

.mission-box p,
.vision-box p {
    color: var(--text-muted, #6c757d);
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   ABOUT PAGE - DARK THEME
   ============================================ */

[data-theme="dark"] .about-hero {
    background: linear-gradient(135deg, #1f6b3a, #0d3a1e);
}

[data-theme="dark"] .stat-box {
    background: var(--bg-card, #1e1e2e);
    border-color: var(--border, #2a2a3e);
}

[data-theme="dark"] .stat-box:hover {
    border-color: var(--primary, #2d8a4e);
}

[data-theme="dark"] .about-text h2 {
    color: var(--text, #e8e8f0);
}

[data-theme="dark"] .about-text ul li {
    color: var(--text-muted, #a0a0b0);
    border-color: var(--border, #2a2a3e);
}

[data-theme="dark"] .about-text ul li strong {
    color: var(--text, #e8e8f0);
}

[data-theme="dark"] .about-text ul li:hover {
    color: var(--text, #e8e8f0);
}

[data-theme="dark"] .about-cta {
    background: var(--bg-alt, #1e1e2e);
    border-color: var(--border, #2a2a3e);
}

[data-theme="dark"] .about-cta h3 {
    color: var(--text, #e8e8f0);
}

[data-theme="dark"] .mission-box,
[data-theme="dark"] .vision-box {
    background: var(--bg-card, #1e1e2e);
    border-color: var(--border, #2a2a3e);
}

[data-theme="dark"] .mission-box h3,
[data-theme="dark"] .vision-box h3 {
    color: var(--text, #e8e8f0);
}

/* ============================================
   ABOUT PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0 60px;
    }
    
    .about-hero {
        padding: 40px 20px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-hero::before {
        font-size: 120px;
        right: -20px;
        bottom: -20px;
    }
    
    .about-text h2 {
        font-size: 1.3rem;
        padding-left: 14px;
    }
    
    .about-text p {
        font-size: 0.98rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-box {
        padding: 20px 12px;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-cta {
        padding: 30px 20px;
    }
    
    .about-cta h3 {
        font-size: 1.4rem;
    }
    
    .about-cta .btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 30px 16px;
        border-radius: 12px;
    }
    
    .about-hero h1 {
        font-size: 1.6rem;
    }
    
    .about-hero p {
        font-size: 0.9rem;
    }
    
    .about-hero::before {
        font-size: 80px;
        right: -15px;
        bottom: -15px;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .stat-box {
        padding: 16px 10px;
    }
    
    .stat-box .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.8rem;
    }
    
    .about-text h2 {
        font-size: 1.1rem;
    }
    
    .about-text ul li {
        padding: 8px 0 8px 32px;
        font-size: 0.9rem;
    }
    
    .about-text ul li::before {
        font-size: 0.9rem;
        top: 8px;
    }
    
    .about-cta h3 {
        font-size: 1.2rem;
    }
}
/* Dark Theme Adjustments */
[data-theme="dark"] .service-image-placeholder {
    background: linear-gradient(135deg, #1a3a2e, #1e1e2e);
}

[data-theme="dark"] .service-price-badge {
    background: rgba(45, 138, 78, 0.85);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.step-card {
    text-align: center;
    padding: var(--spacing-lg);
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.step-card h3 {
    margin-bottom: var(--spacing-sm);
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--spacing-xxl) 0;
    background: var(--primary);
    color: #ffffff;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.25rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.cta-section .btn {
    background: #ffffff;
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--bg-alt);
    color: var(--primary-dark);
}

/* ============================================
   FINAL PREMIUM FOOTER
   ============================================ */

.site-footer {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a1a2e 50%, #0f3460 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--primary);
}

/* Decorative Glow */
.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 138, 78, 0.2), transparent 70%);
    pointer-events: none;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1), transparent 70%);
    pointer-events: none;
}

/* Footer Top Grid */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-list li .contact-icon {
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: var(--primary);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.4s ease;
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(45, 138, 78, 0.4);
}

/* Footer Columns */
.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* Admin Link */
.footer-admin {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.admin-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    max-width: 800px;
    margin: 0 auto !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* ============================================
   PAGE HEADER
   ============================================ */

.page-header {
    padding: var(--spacing-xl) 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 0;
}

/* ============================================
   PRICE DISCLAIMER
   ============================================ */

.price-disclaimer {
    padding: var(--spacing-md);
    background: var(--primary-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
    margin-bottom: var(--spacing-lg);
}

.price-disclaimer p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text);
}
/* ============================================
   FOOTER ADMIN LINK
   ============================================ */

.footer-admin {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.05);
}

.admin-icon {
    font-size: 0.8rem;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    gap: var(--spacing-sm);
}

.footer-bottom-left p,
.footer-bottom-right p {
    margin-bottom: 0;
    font-size: 0.8rem;
}

.footer-powered {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem !important;
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-powered a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

/* Admin link in footer - hover effect */
.footer-col .admin-link {
    margin-top: 4px;
}

/* Dark theme adjustments */
[data-theme="dark"] .admin-link {
    color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .admin-link:hover {
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   CONTACT / ENQUIRY BUTTON
   ============================================ */

.btn-contact {
    background: var(--secondary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.btn-contact:hover {
    background: #d4951f;
    color: #ffffff;
    transform: translateY(-2px);
}

.nav-contact {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.nav-contact::after {
    background: var(--secondary) !important;
}

.nav-contact:hover {
    color: var(--primary-dark) !important;
}

/* Enquiry button in mobile */
.btn-outline.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline.btn-block:hover {
    background: var(--primary);
    color: #ffffff;
}

/* ============================================
   CONTACT PAGE - ENHANCED STYLES
   ============================================ */

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0 var(--spacing-xxl);
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

/* Contact Info Card - Left Side */
.contact-info {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    position: sticky;
    top: 100px;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.contact-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.contact-item:hover {
    transform: translateX(4px);
}

.contact-icon {
    font-size: 1.3rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--primary);
    color: #ffffff;
    transform: scale(1.05);
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text);
    font-weight: 500;
}

.contact-item a {
    color: var(--primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Contact Form - Right Side */
.contact-form-wrapper {
    background: var(--bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
}

.contact-form-wrapper h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.form-card .form-group {
    margin-bottom: var(--spacing-md);
}

.form-card .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
    font-size: 0.9rem;
}

.form-card .form-group label .required {
    color: var(--danger);
    margin-left: 2px;
}

.form-card .form-group input,
.form-card .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-family);
    background: var(--bg);
    color: var(--text);
    transition: all 0.3s ease;
}

.form-card .form-group input:focus,
.form-card .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.1);
    background: var(--bg);
}

.form-card .form-group input.error,
.form-card .form-group textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}

.form-card .form-group textarea {
    resize: vertical;
    min-height: 130px;
    max-height: 300px;
}

.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form Submit Button */
.form-card .btn-primary {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-card .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 138, 78, 0.3);
}

.form-card .btn-primary:active {
    transform: translateY(0);
}

/* Map Section */
.map-section {
    padding: 0 0 var(--spacing-xxl);
    background: var(--bg);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 8px 40px var(--shadow-hover);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* ============================================
   CONTACT PAGE - DARK THEME
   ============================================ */

[data-theme="dark"] .contact-icon {
    background: var(--primary-light);
    color: var(--primary);
}

[data-theme="dark"] .contact-item:hover .contact-icon {
    background: var(--primary);
    color: #ffffff;
}

[data-theme="dark"] .form-card .form-group input,
[data-theme="dark"] .form-card .form-group textarea {
    background: var(--bg);
    border-color: var(--border);
    color: var(--text);
}

[data-theme="dark"] .form-card .form-group input:focus,
[data-theme="dark"] .form-card .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.2);
}

/* ============================================
   CONTACT PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: var(--spacing-lg);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-lg);
    }
    
    .contact-item {
        padding: var(--spacing-sm) 0;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    .form-card .btn-primary {
        padding: 12px;
        font-size: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        padding: var(--spacing-md);
    }
    
    .contact-form-wrapper {
        padding: var(--spacing-md);
    }
    
    .contact-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    
    .contact-item {
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) 0;
    }
    
    .form-card .form-group input,
    .form-card .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .map-container iframe {
        height: 220px;
    }
}

/* ============================================
   SUCCESS MESSAGES
   ============================================ */

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
}

[data-theme="dark"] .alert-success {
    background: #1a3a2e;
    color: #a0e0b0;
    border-color: #2a5a3e;
}

[data-theme="dark"] .alert-danger {
    background: #3a1a1a;
    color: #e0a0a0;
    border-color: #5a2a2a;
}

/* ============================================
   VALIDATION ERRORS
   ============================================ */

.validation-errors {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-md) 0;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    color: #721c24;
}

.validation-errors li {
    padding: 2px 0;
}

[data-theme="dark"] .validation-errors {
    background: #3a1a1a;
    border-color: #5a2a2a;
    color: #e0a0a0;
}

/* ============================================
   HEADER ADMIN LINK
   ============================================ */

.admin-header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    position: relative;
}

.admin-header-link:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-color: var(--primary);
    transform: scale(1.05);
}

.admin-header-link .admin-icon {
    font-size: 0.9rem;
}

/* Tooltip */
.admin-header-link::after {
    content: 'Admin Login';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    background: var(--text);
    color: var(--bg);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.admin-header-link:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

/* Mobile admin link */
.admin-mobile-link {
    color: var(--text-muted) !important;
    font-size: 0.9rem !important;
    padding: var(--spacing-sm) 0 !important;
    border-top: 1px solid var(--border);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-md) !important;
}

.admin-mobile-link:hover {
    color: var(--primary) !important;
}

.mobile-divider {
    border-top: 1px solid var(--border);
    margin: var(--spacing-sm) 0;
    list-style: none;
}

/* Dark theme */
[data-theme="dark"] .admin-header-link {
    background: var(--bg);
    border-color: var(--border);
}

[data-theme="dark"] .admin-header-link:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

[data-theme="dark"] .admin-header-link::after {
    background: var(--text);
    color: var(--bg);
}

/* Responsive */
@media (max-width: 768px) {
    .admin-header-link {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
    }
    
    .admin-header-link::after {
        display: none;
    }
    
    .btn-contact {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .header-actions {
        gap: 4px;
    }
    
    .admin-header-link {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .btn-contact {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .header-actions .btn-sm {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left,
    .footer-bottom-right {
        width: 100%;
    }
    
    .footer-admin {
        text-align: center;
    }
}
/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Desktop */
@media (max-width: 1366px) {
    .container { max-width: 1140px; }
}

/* Desktop */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-text h1 { font-size: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Tablet */
@media (max-width: 768px) {
    .main-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .hero-content { 
        grid-template-columns: 1fr; 
        text-align: center;
    }
    .hero-subtitle { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-image { order: -1; }
    .hero-image img { max-width: 80%; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    
    .footer-grid { grid-template-columns: 1fr; }
    
    .page-header h1 { font-size: 1.75rem; }
    .section-header h2 { font-size: 1.75rem; }
    .cta-content h2 { font-size: 1.75rem; }
    
    .btn-lg { padding: 12px 24px; font-size: 1rem; }
    
    .service-actions { flex-direction: column; }
    .service-actions .btn { width: 100%; }
}

/* Mobile Large */
@media (max-width: 425px) {
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    
    .hero-text h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    
    .header-inner { flex-wrap: wrap; }
    .header-actions { margin-left: auto; }
}

/* Mobile Small */
@media (max-width: 320px) {
    .container { padding: 0 var(--spacing-sm); }
    .hero-text h1 { font-size: 1.75rem; }
    .logo-text { font-size: 1.25rem; }
    .btn { padding: 8px 16px; font-size: 0.875rem; }
}

/* ============================================
   SERVICE DETAIL PAGE (CUSTOM FIT)
   ============================================ */

/* Attractive Breadcrumb */
.custom-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--bg-card);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin: 20px 0;
    box-shadow: 0 2px 10px var(--shadow);
    font-size: 0.95rem;
}

.custom-breadcrumb a {
    color: var(--text-muted);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
    color: var(--primary);
}

.custom-breadcrumb .separator {
    color: var(--text-light);
    opacity: 0.6;
}

.custom-breadcrumb .current {
    color: var(--primary);
    font-weight: 700;
}

/* Main Card Structure */
.service-detail-section {
    padding: 20px 0 60px;
    background: var(--bg-alt);
}

.service-detail-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Image Column */
.service-image-col {
    width: 50%;
    background: var(--bg-alt);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border);
}

.service-image-wrapper {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.service-detail-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-detail-img:hover {
    transform: scale(1.02);
}

.no-image-placeholder {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 40px;
}

/* Right Info Column */
.service-info-col {
    width: 50%;
    padding: 40px;
    background: var(--bg-card);
}

/* Typography inside card */
.service-detail-info .badge-success {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.service-price-box {
    background: var(--primary-light);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-label {
    color: var(--text-muted);
    font-weight: 600;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
}

.price-unit {
    color: var(--text-muted);
    font-weight: 600;
}

.service-short-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 16px;
    border-left: 4px solid var(--primary);
    margin-bottom: 24px;
}

.service-full-desc h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 16px;
}

.description-content {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: pre-line;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 24px;
}

/* CTA Buttons */
.service-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.service-cta-buttons .btn {
    flex: 1;
    min-width: 150px;
}

/* ============================================
   ENQUIRY FORM (CUSTOM FIT)
   ============================================ */

.enquiry-form-section {
    padding: 40px 0;
    background: var(--bg);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
}

.form-header p {
    color: var(--text-muted);
}

.modern-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.modern-form .form-group {
    margin-bottom: 0;
}

.modern-form label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.modern-form input,
.modern-form textarea,
.modern-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modern-form input:focus,
.modern-form textarea:focus,
.modern-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45, 138, 78, 0.1);
}

.form-group-inline {
    display: grid;
    grid-template-columns: 1fr 100px;
    gap: 10px;
}

.modern-form .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.modern-form .form-check input {
    width: auto;
}

.modern-form .form-check label {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
}

.modern-form button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   DARK THEME ADJUSTMENTS
   ============================================ */

[data-theme="dark"] .service-detail-card {
    background: var(--bg-card);
    border-color: var(--border);
}

[data-theme="dark"] .service-price-box {
    background: var(--primary-light);
    border-color: var(--primary);
}

[data-theme="dark"] .form-wrapper {
    background: var(--bg-card);
    border-color: var(--border);
}

/* ============================================
   RESPONSIVE - SERVICE DETAIL
   ============================================ */

@media (max-width: 992px) {
    .service-image-col {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }
    
    .service-info-col {
        width: 100%;
        padding: 30px;
    }
    
    .service-detail-title {
        font-size: 1.8rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .custom-breadcrumb {
        font-size: 0.85rem;
        padding: 10px 14px;
    }
    
    .service-detail-section {
        padding: 10px 0 40px;
    }
    
    .service-detail-card {
        border-radius: var(--radius-lg);
    }
    
    .service-info-col {
        padding: 24px;
    }
    
    .service-detail-title {
        font-size: 1.6rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
    }
    
    .service-cta-buttons .btn {
        width: 100%;
    }
    
    .modern-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .service-detail-title {
        font-size: 1.4rem;
    }
    
    .price-value {
        font-size: 1.6rem;
    }
    
    .service-price-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .form-wrapper {
        padding: 16px;
    }
}

/* ============================================
   GALLERY SECTION (IMAGE / VIDEO)
   ============================================ */

.gallery-section {
    padding: 60px 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    aspect-ratio: 3/4; /* Height control */
    background: var(--bg-alt);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    padding: 60px 0;
    background: var(--bg-alt);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
    border-color: var(--primary);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE - GALLERY & WHY CHOOSE US
   ============================================ */

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 16/9; /* Landscape on mobile */
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-card {
        padding: 20px;
    }
}
/* ============================================
   LEGAL / PRIVACY POLICY PAGE
   ============================================ */

.legal-section {
    padding: 40px 0 80px;
    background: var(--bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: 0 8px 30px var(--shadow);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 40px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    height: 24px;
    width: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.legal-content h2:first-of-type {
    margin-top: 20px;
}

.legal-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    background: var(--bg-alt);
    border-radius: var(--radius-md);
    padding: 20px 24px;
}

.legal-content ul li {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
}

.legal-content ul li:last-child {
    margin-bottom: 0;
}

.legal-content ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.legal-content ul li strong {
    color: var(--text);
}

/* Dark Theme */
[data-theme="dark"] .legal-content ul {
    background: var(--bg-alt);
}

/* ============================================
   LEGAL PAGE - RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .legal-section {
        padding: 20px 0 60px;
    }
    
    .legal-content {
        padding: 24px;
        border-radius: var(--radius-lg);
    }
    
    .legal-content h2 {
        font-size: 1.3rem;
        margin-top: 30px;
        padding-left: 12px;
    }
    
    .legal-content h2::before {
        height: 20px;
    }
    
    .legal-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .legal-content ul {
        padding: 16px 18px;
    }
    
    .legal-content ul li {
        font-size: 0.95rem;
        padding-left: 24px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 16px;
    }
    
    .legal-content h2 {
        font-size: 1.1rem;
    }
    
    .legal-content p {
        font-size: 0.95rem;
    }
    
    .legal-content ul li {
        font-size: 0.9rem;
    }
}