:root {
    --primary-blue: #00AEF0;
    --accent-blue: #0080C0;
    --light-blue: #ADD8E6;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--gray-900);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 174, 240, 0.1);
}

header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-xl);
    border-bottom-color: rgba(0, 174, 240, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-icon {
    height: 60px;
    width: 60px;
    margin-right: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--primary-blue);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 174, 240, 0.8), rgba(0, 128, 192, 0.8)), url('/images/window-cleaning-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(0, 174, 240, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: slideInUp 1.2s ease-out 0.3s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0 0 2rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
    animation: glow 3s ease-in-out infinite alternate;
    letter-spacing: -0.02em;
}

@keyframes glow {
    from {
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    to {
        text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 2px 4px rgba(0,0,0,0.3);
    }
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin: 0 0 3rem 0;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-out 0.6s both;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.95;
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: slideInUp 1.5s ease-out 0.9s both;
}

.hero .btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.hero .btn-primary:hover::before {
    left: 100%;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 240, 0.4);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    letter-spacing: 0.01em;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="0.8" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.about-section h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    animation: fadeIn 1.5s ease-out 0.8s both;
}

/* Service Area Section */
.service-area-section {
    background: linear-gradient(135deg, var(--light-blue), rgba(173, 216, 230, 0.8));
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-area-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(0,174,240,0.1)"/><circle cx="80" cy="40" r="0.5" fill="rgba(0,174,240,0.1)"/><circle cx="40" cy="80" r="0.8" fill="rgba(0,174,240,0.1)"/></svg>');
    opacity: 0.3;
}

.service-area-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-area-section h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-area-section p {
    color: var(--gray-700);
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-out 0.6s both;
}

.map-container {
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 16px;
    overflow: hidden;
    animation: slideInUp 1.2s ease-out 0.9s both;
    transition: transform 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

/* Feature Cards */
.features {
    padding: 4rem 2rem;
    background: var(--gray-100);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    text-align: center;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.feature-card p {
    color: var(--gray-700);
    margin: 0;
}

/* What's Included Section */
.included {
    padding: 4rem 2rem;
    background: var(--white);
}

.included-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 3rem;
}

.included h2 {
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 2rem 0;
}

.included-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.included-list li::before {
    content: '✓';
    color: var(--accent-blue);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.cta-button {
    display: block;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin: 2rem auto 0;
    max-width: 300px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background: #1e3a8a;
}

/* Bottom CTA */
.bottom-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e3a8a 100%);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.bottom-cta h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
}

.bottom-cta p {
    font-size: 1.2rem;
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--accent-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #2563eb;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-info {
    margin: 1.5rem 0;
}

.footer-logo {
    height: 48px;
    width: 48px;
    margin-bottom: 1rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--accent-blue);
    margin: 0.5rem 0;
}

.footer-info a {
    color: var(--accent-blue);
    text-decoration: underline;
}

.footer-copyright {
    border-top: 1px solid var(--gray-700);
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Contact Form Styles */
.contact-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 3rem auto 2rem auto;
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px rgba(0,40,80,0.07);
    padding: 2.5rem 2rem;
}

.contact-left {
    flex: 1 1 320px;
    min-width: 270px;
    max-width: 400px;
}

.contact-logo {
    display: block;
    margin-bottom: 1.2rem;
    height: 80px;
    width: auto;
    object-fit: contain;
}

.contact-business {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
}

.contact-details {
    font-size: 1.05rem;
    color: #222;
    margin-bottom: 2.2rem;
}

.contact-details strong {
    display: inline-block;
    min-width: 70px;
    color: var(--primary-blue);
}

.contact-details a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-right {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 500px;
}

.contact-form-modern label {
    font-weight: 600;
    color: #444;
    margin-bottom: 0.2rem;
    display: block;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid #cfd8dc;
    border-radius: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1.1rem;
    background: #f8fafc;
    transition: border 0.2s;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    border: 1.5px solid var(--primary-blue);
    outline: none;
}

.contact-form-modern .form-row {
    display: flex;
    gap: 1rem;
}

.contact-form-modern .form-row > div {
    flex: 1 1 0;
}

.contact-form-modern button {
    margin-top: 0.5rem;
}

/* Button Styles */
.btn {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
    cursor: pointer;
}

.btn:hover {
    background: #1e3a8a;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23e5e7eb"/><circle cx="80" cy="40" r="0.5" fill="%23e5e7eb"/><circle cx="40" cy="80" r="0.8" fill="%23e5e7eb"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.services-preview h2 {
    color: var(--primary-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0 0 4rem 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.2s both;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 174, 240, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--light-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 240, 0.05) 0%, rgba(0, 128, 192, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 174, 240, 0.4);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 1.2rem 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover h3 {
    color: var(--accent-blue);
    transform: scale(1.05);
}

.service-card p {
    color: var(--gray-700);
    margin: 0 0 1.8rem 0;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    display: block;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    color: var(--accent-blue);
    transform: scale(1.1) rotate(5deg);
}

.service-card .service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.service-card .service-features li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card .service-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
    color: var(--accent-blue);
    transform: scale(1.2);
}

.service-card .service-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-price {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.service-card .service-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 174, 240, 0.3);
}

.service-card .service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 174, 240, 0.4);
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
}

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin: 0 0 2rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out;
}

.services-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeIn 1.5s ease-out 0.3s both;
}

.services-grid-section {
    padding: 4rem 2rem;
    background: var(--white);
}

.services-grid-section .services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.services-grid-section .service-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.services-grid-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 240, 0.05) 0%, rgba(0, 128, 192, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-grid-section .service-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-grid-section .service-card:hover::before {
    opacity: 1;
}

.services-grid-section .service-card:hover::after {
    opacity: 1;
}

.services-grid-section .service-card:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 174, 240, 0.4);
}

.services-grid-section .service-card h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    transition: color 0.3s ease;
}

.services-grid-section .service-card:hover h3 {
    color: var(--primary-blue);
}

.services-grid-section .service-card p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    font-size: 1rem;
}

.services-grid-section .service-card .service-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.services-grid-section .service-card:hover .service-icon {
    transform: scale(1.1);
}

.services-grid-section .service-card .service-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.services-grid-section .service-card .service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.services-grid-section .service-card .service-cta:hover::before {
    left: 100%;
}

.services-grid-section .service-card .service-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    text-decoration: none;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-section .btn-primary:hover::before {
    left: 100%;
}

.cta-section .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Individual Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
    letter-spacing: -0.02em;
}

.service-hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin: 0 0 3rem 0;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.6s both;
    letter-spacing: 0.01em;
}

.service-hero .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    color: var(--primary-blue);
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.service-hero .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.service-hero .btn-primary:hover::before {
    left: 100%;
}

.service-hero .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    color: var(--accent-blue);
}

.service-content {
    padding: 4rem 2rem;
    background: var(--white);
}

.service-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.service-overview h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-overview p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-benefits {
    margin-bottom: 4rem;
}

.service-benefits h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 240, 0.05) 0%, rgba(0, 128, 192, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 174, 240, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.benefit-card:hover h4 {
    color: var(--primary-blue);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.service-included {
    margin-bottom: 4rem;
}

.service-included h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.01em;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.included-column {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.included-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    text-align: center;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-list li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

.service-cta-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 174, 240, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(0, 128, 192, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.service-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.service-cta-section p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.service-cta-buttons .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.service-cta-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-cta-buttons .btn-primary:hover::before {
    left: 100%;
}

.service-cta-buttons .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-cta-buttons .btn-secondary {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    color: var(--gray-700);
    padding: 1.25rem 3rem;
    border-radius: 16px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-200);
    letter-spacing: 0.5px;
}

.service-cta-buttons .btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    /* Service Page Responsive Styles */
    .service-hero {
        padding: 4rem 1.5rem;
        min-height: 50vh;
    }
    
    .service-hero-icon {
        font-size: 3rem;
    }
    
    .service-content {
        padding: 3rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .included-column {
        padding: 2rem 1.5rem;
    }
    
    .service-cta-section {
        padding: 3rem 1.5rem;
    }
    
    .service-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .service-cta-buttons .btn-primary,
    .service-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Services Page Responsive Styles */
    .services-hero {
        padding: 4rem 1.5rem;
    }
    
    .services-grid-section {
        padding: 3rem 1.5rem;
    }
    
    .services-grid-section .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid-section .service-card {
        padding: 2.5rem 2rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    /* Original responsive styles */
    .hero {
        padding: 4rem 1rem;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero .btn-primary,
    .hero .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .about-section {
        clip-path: none;
        padding: 4rem 1rem;
    }
    
    .services-preview {
        padding: 4rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 2rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-flex {
        flex-direction: column;
        padding: 1.5rem 0.5rem;
    }
    
    .contact-left, .contact-right {
        max-width: 100%;
    }
    
    nav {
        padding: 0 1rem;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    .logo-icon {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 480px) {
    /* Service Page Responsive Styles */
    .service-hero {
        padding: 3rem 1rem;
        min-height: 40vh;
    }
    
    .service-hero-icon {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .service-content {
        padding: 2rem 1rem;
    }
    
    .service-overview h2 {
        font-size: 1.8rem;
    }
    
    .service-overview p {
        font-size: 1rem;
    }
    
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-card h4 {
        font-size: 1.2rem;
    }
    
    .included-column {
        padding: 1.5rem 1rem;
    }
    
    .service-cta-section {
        padding: 2rem 1rem;
    }
    
    .service-cta-section h2 {
        font-size: 1.8rem;
    }
    
    .service-cta-section p {
        font-size: 1rem;
    }
    
    .service-cta-buttons .btn-primary,
    .service-cta-buttons .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Services Page Responsive Styles */
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .services-grid-section .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-grid-section .service-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-section .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Original responsive styles */
    .hero {
        padding: 3rem 1rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-preview h2 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    nav a {
        font-size: 0.9rem;
    }
} 