/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f3a4a;
    --secondary-color: #f39c12;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --light-bg: #f5f7fa;
    --border-color: #e8ecf1;
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --footer-bg: #0f3a4a;
    --nav-bg: #0f3a4a;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] {
    --text-color: #e8ecf1;
    --light-bg: #1a2332;
    --border-color: #2c3e50;
    --bg-color: #0f1419;
    --card-bg: #1a2332;
    --footer-bg: #070a0e;
    --nav-bg: #0f1419;
}

html, body {
    font-family: 'Segoe UI', 'Trebuchet MS', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    scroll-behavior: smooth;
    font-weight: 400;
    letter-spacing: 0.3px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(243, 156, 18, 0.8);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes counterUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--card-bg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 1.2rem 0;
    background: linear-gradient(135deg, var(--nav-bg) 0%, #0d3a4a 100%);
    color: white;
    border-bottom: 1px solid rgba(243, 156, 18, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.nav-brand a:hover {
    transform: scale(1.05);
}

.nav-brand h1 {
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    padding: 9px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Image Slider */
.image-slider {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background-color: var(--light-bg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
    transition: transform 0.8s ease-in-out, filter 0.8s ease-in-out;
}

.slide.active img {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.15);
}

.slide-overlay {
    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) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.slide-content p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 300;
    letter-spacing: 0.3px;
}

.slider-controls {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
}

.slider-dot:hover {
    transform: scale(1.2);
    background-color: rgba(255, 255, 255, 0.6);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.slider-arrow.prev {
    left: 25px;
}

.slider-arrow.next {
    right: 25px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a4a 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 0.3px;
    animation: slideDown 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(243, 156, 18, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.why-choose-us h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 20px 50px rgba(26, 95, 122, 0.2);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.benefit-card:hover h3 {
    color: var(--secondary-color);
}

.benefit-card p {
    color: var(--text-color);
    font-weight: 400;
    line-height: 1.8;
}

/* Quick Services Section */
.quick-services {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quick-services::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quick-services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.quick-services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-item {
    padding: 1.5rem;
    border-left: 4px solid var(--secondary-color);
    background-color: var(--light-bg);
    border-radius: 4px;
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 156, 18, 0.1), transparent);
    transition: left 0.5s;
}

.service-item:hover {
    transform: translateX(5px);
    border-left-width: 6px;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.2);
}

.service-item:hover::before {
    left: 100%;
}

.service-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Service Area Preview */
.service-area-preview {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3f52 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.service-area-preview h2 {
    margin-bottom: 1rem;
}

.service-area-preview p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3a4a 50%, var(--primary-color) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h2 {
    font-size: 2.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header p {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 300;
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 0;
}

.service-detail {
    margin-bottom: 3.5rem;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    position: relative;
}

.service-detail:nth-child(odd) {
    animation-delay: 0s;
}

.service-detail:nth-child(even) {
    animation-delay: 0.1s;
}

.service-detail:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
    border-left-width: 6px;
}

.service-detail h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-detail ul {
    margin-left: 20px;
    color: var(--text-color);
}

.service-detail li {
    margin-bottom: 0.7rem;
    font-weight: 400;
}

/* About Content */
.about-content {
    padding: 3rem 0;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-section p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

.commitment-list {
    list-style: none;
    margin-left: 0;
}

.commitment-list li {
    padding: 0.5rem 0;
    color: #555;
}

.industries-list {
    list-style: none;
    margin-left: 0;
    columns: 2;
}

.industries-list li {
    padding: 0.5rem 0;
    color: #555;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-top: 3px solid var(--secondary-color);
}

.feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Service Area Content */
.service-area-content {
    padding: 3rem 0;
}

.area-section {
    margin-bottom: 3rem;
}

.area-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.area-section p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-regions {
    list-style: none;
    margin-left: 0;
    margin-bottom: 1rem;
}

.service-regions li {
    padding: 0.5rem 0;
    color: #555;
}

.counties-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.county {
    padding: 1.5rem;
    background-color: var(--light-bg);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.county h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.county p {
    color: #666;
    font-size: 0.95rem;
}

.support-features {
    list-style: none;
    margin-left: 0;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.support-features li {
    padding: 0.5rem 0;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.support-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(243, 156, 18, 0.3);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    animation: slideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

/* Contact Form */
.contact-content {
    padding: 3rem 0;
}

.contact-section {
    margin-bottom: 3rem;
}

.contact-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(26, 95, 122, 0.3);
}

.form-submit {
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-submit:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-box {
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-radius: 12px;
    border-top: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.info-box:nth-child(1) { animation-delay: 0.1s; }
.info-box:nth-child(2) { animation-delay: 0.2s; }
.info-box:nth-child(3) { animation-delay: 0.3s; }

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.2rem;
}

.info-box p {
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.info-box a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.info-box a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--footer-bg) 0%, #070a0e 100%);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(243, 156, 18, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.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;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b8d4e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    color: #b8d4e0;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    text-align: center;
    color: #b8d4e0;
}

/* Contact Benefits List */
.contact-benefits {
    list-style: none;
    margin-left: 0;
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
}

.contact-benefits li {
    padding: 0.75rem 0;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.contact-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Booking Calendar */
.booking-section {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.booking-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-section p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.calendar-container {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 8px;
    display: inline-block;
    min-width: 300px;
}

.calendar-container iframe {
    border: none;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 0.8rem;
    }

    .nav-brand h1 {
        font-size: 1.3rem;
    }

    .hero h2,
    .page-header h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .slider-container {
        height: 250px;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .benefit-card {
        padding: 2rem;
    }

    .quick-services h2,
    .why-choose-us h2,
    .cta-section h2,
    .page-header h2 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .slider-arrow {
        padding: 10px 13px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}
