/*
Theme Name: Stratoclean Professional v3
Theme URI: https://stratoclean.com
Description: Professional automation-friendly WordPress theme for Stratoclean. All content editable via REST API, luxury design with Font Awesome icons, compact navigation, fully responsive. Built for AI agent automation.
Author: Stratoclean
Version: 3.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stratoclean-pro
Tags: business, professional-services, automation-friendly, rest-api, custom-menu, featured-images
*/

/* ================================
   CSS RESET & BASE
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* ================================
   LUXURY TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a3a52;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

/* ================================
   COMPACT HEADER & NAVIGATION
   ================================ */
.site-header {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-logo {
    max-height: 50px;
    width: auto;
}

.site-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.5px;
}

.site-title a {
    color: #ffffff;
}

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

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation a.active,
.main-navigation .current_page_item > a {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ================================
   HERO SECTION - LUXURY WITH SLIDER
   ================================ */
.hero-section {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 50%, #4a90c7 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background Slider */
.hero-background-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(44, 95, 127, 0.75) 100%);
    z-index: 1;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.slider-dots .dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* App Download Buttons */
.app-download-buttons {
    margin-top: 2.5rem;
}

.download-label {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-app:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.btn-app i {
    font-size: 2rem;
}

.btn-app span {
    text-align: left;
    line-height: 1.3;
}

.btn-app small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
}

/* iOS/Android specific button styles */
.btn-ios {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ios:hover {
    background: rgba(0, 0, 0, 0.5);
}

.btn-android {
    background: rgba(61, 220, 132, 0.2);
    border-color: rgba(61, 220, 132, 0.4);
}

.btn-android:hover {
    background: rgba(61, 220, 132, 0.3);
    border-color: rgba(61, 220, 132, 0.6);
}

/* ================================
   BUTTONS - LUXURY STYLE
   ================================ */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #4a90c7 0%, #3498db 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: #ffffff;
    color: #1a3a52;
    border: 2px solid #1a3a52;
}

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

/* ================================
   CONTAINER & LAYOUT
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4a90c7, #3498db);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.25rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 1rem auto 0;
}

/* ================================
   MEDIA WITH TEXT LAYOUTS
   ================================ */
.media-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.media-text-block.reverse {
    direction: rtl;
}

.media-text-block.reverse > * {
    direction: ltr;
}

.media-content img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.media-content img:hover {
    transform: scale(1.02);
}

.text-content h3 {
    margin-bottom: 1.5rem;
}

.text-content ul {
    list-style: none;
    padding-left: 0;
}

.text-content ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
}

.text-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #4a90c7;
    font-size: 1rem;
}

/* ================================
   SERVICES GRID - LUXURY CARDS
   ================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(26, 58, 82, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: #4a90c7;
    margin-bottom: 1.5rem;
}

.service-icon i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: linear-gradient(135deg, #4a90c7 0%, #3498db 100%);
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(74, 144, 199, 0.3);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

/* Service Image Cards */
.service-image-card {
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin: -3rem -2rem 2rem -2rem;
}

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

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

/* ================================
   BLOG SECTION
   ================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    font-size: 0.9375rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.5rem;
    color: #4a90c7;
}

.blog-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

.blog-card h3 a {
    color: #1a3a52;
}

.blog-card h3 a:hover {
    color: #4a90c7;
}

.blog-excerpt {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ================================
   SINGLE POST TEMPLATE
   ================================ */
.single-post {
    max-width: 900px;
    margin: 0 auto;
}

.post-header {
    margin-bottom: 3rem;
}

.post-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.post-meta {
    font-size: 1rem;
    color: #7f8c8d;
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.post-meta i {
    margin-right: 0.5rem;
    color: #4a90c7;
}

.post-featured-image {
    margin-bottom: 3rem;
}

.post-featured-image img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.post-content {
    font-size: 1.125rem;
    line-height: 1.9;
}

.post-content img {
    margin: 2.5rem 0;
    border-radius: 8px;
}

.post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

/* ================================
   FOOTER - LUXURY
   ================================ */
.site-footer {
    background: linear-gradient(135deg, #1a3a52 0%, #2c5f7f 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ================================
   FEATURED AREA
   ================================ */
.featured-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 3rem 0;
}

.featured-area h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: #ffffff; }

.mt-3 { margin-top: 3rem; }
.mb-3 { margin-bottom: 3rem; }
.py-5 { padding-top: 5rem; padding-bottom: 5rem; }

/* ================================
   WORDPRESS SPECIFIC
   ================================ */
.alignleft {
    float: left;
    margin: 0.5rem 2rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0.5rem 0 1rem 2rem;
}

.aligncenter {
    display: block;
    margin: 2rem auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9375rem;
    color: #7f8c8d;
    padding: 0.75rem;
    text-align: center;
    font-style: italic;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
    .hero-section h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 1rem;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .main-navigation li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation li:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem;
    }
    
    .hero-section {
        padding: 3rem 1.5rem;
        min-height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.125rem;
    }
    
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-app {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .media-text-block,
    .media-text-block.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .post-title {
        font-size: 2rem;
    }
    
    .service-image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .container,
    .wide-container {
        padding: 0 1rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}

/* ================================
   HERO SLIDER ADDITIONS
   ================================ */
.hero-slider {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(44, 95, 127, 0.75) 50%, rgba(74, 144, 199, 0.65) 100%);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

/* ================================
   APP DOWNLOAD BUTTONS
   ================================ */
.app-download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.btn-app i {
    font-size: 2.5rem;
}

.btn-app span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.btn-app small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-app strong {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-ios {
    background: #ffffff;
    color: #000000;
}

.btn-ios:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-android {
    background: #3DDC84;
    color: #ffffff;
}

.btn-android:hover {
    background: #2ec771;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ================================
   SERVICE IMAGES
   ================================ */
.services-with-images .service-card {
    padding: 0;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.service-image-card h3,
.service-image-card p {
    padding: 0 2rem;
}

.service-image-card h3 {
    padding-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-image-card p {
    padding-bottom: 2rem;
}

.service-image-card .service-icon {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Mobile Responsive - App Buttons */
@media (max-width: 768px) {
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-app {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .btn-app {
        padding: 0.875rem 1.5rem;
    }
    
    .btn-app i {
        font-size: 2rem;
    }
    
    .btn-app small {
        font-size: 0.7rem;
    }
    
    .btn-app strong {
        font-size: 1rem;
    }
    
    .hero-slider {
        min-height: 450px;
    }
}

/* ================================
   HERO SLIDER & APP BUTTONS
   ================================ */
.hero-section.has-slider {
    background: none;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(44, 95, 127, 0.75) 100%);
    z-index: 1;
}

.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* App Download Buttons */
.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-app i {
    font-size: 1.5rem;
}

.btn-ios {
    background: linear-gradient(135deg, #000000 0%, #1c1c1c 100%);
    color: #ffffff;
}

.btn-ios:hover {
    background: linear-gradient(135deg, #1c1c1c 0%, #333333 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

.btn-android {
    background: linear-gradient(135deg, #3ddc84 0%, #2ab96b 100%);
    color: #ffffff;
}

.btn-android:hover {
    background: linear-gradient(135deg, #2ab96b 0%, #1fa255 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(42, 185, 107, 0.4);
}

/* ================================
   SERVICE IMAGE STYLING
   ================================ */
.service-image {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.cta-section {
    padding: 6rem 0;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Brand Logos */
.fab.fa-apple,
.fab.fa-google-play {
    font-family: 'Font Awesome 5 Brands' !important;
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-app {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ================================
   HERO SLIDER STYLES
   ================================ */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.85) 0%, rgba(44, 95, 127, 0.75) 100%);
    z-index: 3;
}

.hero-section.has-slider {
    min-height: 600px;
}

.hero-section .hero-content {
    position: relative;
    z-index: 4;
}

/* ================================
   APP DOWNLOAD BUTTONS
   ================================ */
.app-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-app {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-app i {
    font-size: 1.5rem;
}

.btn-ios {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    color: #ffffff;
}

.btn-ios:hover {
    background: linear-gradient(135deg, #434343 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-android {
    background: linear-gradient(135deg, #3ddc84 0%, #07c160 100%);
    color: #ffffff;
}

.btn-android:hover {
    background: linear-gradient(135deg, #07c160 0%, #3ddc84 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 220, 132, 0.4);
}

/* ================================
   SERVICE IMAGES (REPLACING ICONS)
   ================================ */
.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-image img,
.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Keep icon styling for cards without images */
.service-card .service-icon {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .app-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-app {
        width: 100%;
        justify-content: center;
    }
    
    .hero-section.has-slider {
        min-height: 500px;
    }
}
