@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --font-arabic: 'Cairo', 'Tajawal', sans-serif;
    --font-english: 'Outfit', sans-serif;
    
    /* Light Mode Variables */
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent: #0284c7;         /* Cool cyan/blue */
    --accent-hover: #0369a1;
    --accent-gold: #d97706;    /* Amber/Gold for luxury technical feel */
    --accent-gold-hover: #b45309;
    --border-color: #e2e8f0;
    --card-shadow: 0 10px 30px -10px rgba(2, 132, 199, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
    --nav-bg: rgba(248, 250, 252, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);
    --input-bg: #ffffff;
    --success-bg: #dcfce7;
    --success-text: #166534;
    --badge-bg: #e0f2fe;
    --badge-text: #0369a1;
}

[data-theme="dark"] {
    /* Dark Mode Variables */
    --bg-primary: #090d16;
    --bg-secondary: #111827;
    --bg-tertiary: #1f2937;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --accent: #38bdf8;         /* Bright electric blue/cyan */
    --accent-hover: #7dd3fc;
    --accent-gold: #fbbf24;    /* Gold/Amber for warm accents */
    --accent-gold-hover: #fcd34d;
    --border-color: #1f2937;
    --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(255, 255, 255, 0.02);
    --nav-bg: rgba(9, 13, 22, 0.8);
    --glass-border: rgba(17, 24, 39, 0.8);
    --input-bg: #1f2937;
    --success-bg: #064e3b;
    --success-text: #34d399;
    --badge-bg: #1e3a8a;
    --badge-text: #93c5fd;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(2, 132, 199, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-gold {
    background-color: var(--accent-gold);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-primary);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background-color: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--accent), var(--accent-gold));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.theme-toggle-btn:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(2, 132, 199, 0.05) 0%, transparent 45%),
                radial-gradient(circle at 90% 80%, rgba(217, 119, 6, 0.04) 0%, transparent 45%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 6px 16px;
    background-color: var(--badge-bg);
    color: var(--badge-text);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(2, 132, 199, 0.1);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-gold) 100%);
    animation: morphing 15s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.2);
}

.hero-image-overlay {
    width: 96%;
    height: 96%;
    border-radius: inherit;
    background-color: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    border: 2px solid var(--glass-border);
}

.hero-badge-card {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--card-shadow);
}

.hero-badge-1 {
    top: 10%;
    right: -20px;
}

.hero-badge-2 {
    bottom: 10%;
    left: -20px;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-badge-icon.gold {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-gold);
}

.hero-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.about-image-banner {
    margin-top: 30px;
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.about-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-banner:hover img {
    transform: scale(1.03);
}

/* About Us Section */
.about {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
}

.about-card:hover::before {
    opacity: 1;
}

.about-card-icon {
    font-size: 2rem;
    color: var(--accent);
}

.about-card-icon.gold {
    color: var(--accent-gold);
}

.about-card-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.about-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-tagline {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(2, 132, 199, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.8rem;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-primary);
}

/* Primary Services (Plumbing & Electrical) */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-main-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card-banner {
    width: calc(100% + 80px);
    margin: -40px -40px 30px -40px;
    height: 185px;
    overflow: hidden;
}

.service-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--accent-gold));
}

.service-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-main-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.icon-box-blue {
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--accent);
}

.icon-box-gold {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-gold);
}

.service-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-blue {
    background-color: rgba(2, 132, 199, 0.08);
    color: var(--accent);
}

.badge-gold {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--accent-gold);
}

.service-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-main-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-list-title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-list-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.service-list-item i {
    color: var(--accent);
}

.service-main-card.card-gold .service-list-item i {
    color: var(--accent-gold);
}

/* AC Services Catalog Section */
.ac-catalog {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.ac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.ac-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ac-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--card-shadow);
}

.ac-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ac-card-tag {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
}

.ac-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
    line-height: 1.4;
}

.ac-card-size {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ac-card-price-box {
    margin-top: 25px;
    border-top: 1px dashed var(--border-color);
    padding-top: 20px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.ac-card-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.ac-card-price {
    font-size: 1.6rem;
    font-weight: 950;
    color: var(--accent);
    font-family: var(--font-english);
}

.ac-card-price.dynamic-unit {
    font-size: 1.2rem;
    font-weight: 800;
}

.ac-card-price-currency {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-right: 4px;
}

/* Interactive Price Calculator */
.calculator-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(217, 119, 6, 0.03) 100%);
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--input-bg);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    font-family: var(--font-arabic);
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.calculator-result-box {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.calc-result-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.calc-price {
    font-size: 3rem;
    font-weight: 950;
    color: var(--accent-gold);
    line-height: 1.1;
    font-family: var(--font-english);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.calc-price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 10px;
    font-family: var(--font-arabic);
}

.calc-detail {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.calc-placeholder {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Quality Assurance & Policies */
.policies {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.policies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.policy-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.policy-card-banner {
    width: calc(100% + 70px);
    margin: -35px -35px 25px -35px;
    height: 160px;
    overflow: hidden;
}

.policy-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.policy-card:hover .policy-card-banner img {
    transform: scale(1.05);
}

.policy-badge-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.policy-card.warning-policy .policy-badge-icon {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-gold);
}

.policy-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.policy-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.policy-example {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: var(--bg-secondary);
    border-right: 4px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
}

.policy-example-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.policy-example-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Booking Section */
.booking {
    padding: 100px 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

.booking-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.contact-icon.whatsapp {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-icon.phone {
    background-color: rgba(217, 119, 6, 0.1);
    color: var(--accent-gold);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.contact-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    direction: ltr;
}

.booking-form-wrapper {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
}

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

.booking-form-grid .form-group:last-child {
    grid-column: span 2;
}

.booking-form-wrapper textarea.form-control {
    resize: none;
    min-height: 100px;
}

/* Success Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: var(--card-shadow);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--success-bg);
    color: var(--success-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.modal-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background-color: #0b0f19;
    color: #9ca3af;
    padding: 60px 0 30px 0;
    border-top: 1px solid #1f2937;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
}

.footer-logo-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-item a {
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-link-item a:hover {
    color: var(--accent);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
}

/* Animations */
.fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.6rem;
    }
    .about-grid, .services-grid, .booking-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 75px);
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        gap: 25px;
        box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-right: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero {
        padding: 120px 0 60px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        width: 100%;
    }
    
    .hero-image-container {
        margin-top: 30px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .policies-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form-grid .form-group:last-child {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
