/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* base font settings */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background 0.3s;
}

.cookie-btn:hover {
    background: #2980b9;
}

/* Mobile Call Button */
.mobile-call-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #27ae60;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s;
    font-weight: 600;
}

.mobile-call-btn.show {
    display: flex;
}

.mobile-call-btn:hover {
    transform: scale(1.05);
    background: #229954;
}

.call-icon {
    font-size: 20px;
}

/* Header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #3498db;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #3498db;
}

.header-phone {
    display: flex;
    align-items: center;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #27ae60;
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s;
}

.phone-link:hover {
    color: #229954;
}

.phone-icon {
    font-size: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

/* Custom Cursor */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid rgba(52, 152, 219, 0.8);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    display: none;
}

.custom-cursor.hover {
    width: 50px;
    height: 50px;
    border-color: rgba(52, 152, 219, 1);
    background: rgba(52, 152, 219, 0.1);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #3498db;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor,
    .cursor-dot {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 60px;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease-out;
}

.hero-section:hover .hero-image {
    transform: scale(1.15);
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(44, 62, 80, 0.85) 0%, 
        rgba(52, 152, 219, 0.75) 50%,
        rgba(39, 174, 96, 0.65) 100%);
    z-index: 2;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.floating-icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 15s;
}

.floating-icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.floating-icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.floating-icon-4 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
    animation-duration: 16s;
}

.floating-icon-5 {
    bottom: 20%;
    right: 25%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.floating-icon-6 {
    top: 70%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 15%;
    right: 20%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 6s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 30%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
    }
}

/* Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 20%;
    animation-delay: 5s;
    animation-duration: 16s;
}

.particle:nth-child(7) {
    left: 60%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 17s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.glass-card::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;
}

.glass-card:hover::before {
    left: 100%;
}

.hero-content-wrapper {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 80px 0;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content {
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(52, 152, 219, 0.3);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    border: 1px solid rgba(52, 152, 219, 0.5);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
}

.title-line:nth-child(3) {
    animation-delay: 0.5s;
}

.title-line.highlight {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Slider */
.hero-services-slider {
    color: #fff;
    max-height: 600px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.services-slider-track {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 0.5s ease-in-out;
    pointer-events: none;
}

.service-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.service-icon {
    font-size: 60px;
    margin-bottom: 20px;
    display: inline-block;
    animation: iconBounce 2s infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-slide h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.service-slide p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.service-features li:hover {
    opacity: 1;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 18px;
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #3498db;
    width: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

/* Service Accordion */
.service-accordion {
    margin-top: 40px;
    color: #fff;
}

.accordion-header-main {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    border-radius: 15px 15px 0 0;
}

.accordion-header-main:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header-main h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.accordion-toggle-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.service-accordion.active .accordion-toggle-icon {
    transform: rotate(180deg);
}

.accordion-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.service-accordion.active .accordion-content-wrapper {
    max-height: 1000px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.accordion-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #fff;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
    color: #3498db;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 20px 20px;
}

.accordion-content p {
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

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

.accordion-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    transition: opacity 0.3s;
}

.accordion-content li:hover {
    opacity: 1;
}

.accordion-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
    font-size: 16px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #fff;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.6);
}

.btn-glow {
    position: relative;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-glow:hover::after {
    width: 300px;
    height: 300px;
}

.btn-shine {
    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.5s;
}

.btn:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-outline {
    position: relative;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-outline:hover::before {
    opacity: 1;
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Why Choose Section */
.why-choose-section {
    background: #f8f9fa;
}

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

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.service-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 20px;
    line-height: 1;
}

/* Process Section */
.process-section {
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-item p {
    color: #666;
    line-height: 1.8;
}

/* Testimonials Section */
.testimonials-section {
    background: #2c3e50;
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.testimonial-slide {
    display: none;
    padding: 40px;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    opacity: 0.9;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: #fff;
}

/* Areas Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.area-item {
    background: #3498db;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
}

.area-item:hover {
    transform: translateY(-3px);
    background: #2980b9;
}

.areas-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #fff;
    color: #2c3e50;
}

.cta-buttons .btn-primary:hover {
    background: #f0f0f0;
}

.cta-buttons .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-buttons .btn-secondary:hover {
    background: #fff;
    color: #2c3e50;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #ccc;
}

.footer-section a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
    color: #999;
}

/* Contact Form Styles */
.contact-form-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #3498db;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Policy Pages */
.policy-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.policy-section h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.policy-section h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.policy-section h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.policy-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-section li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.policy-section strong {
    color: #2c3e50;
}

/* Content Pages */
.content-page-section {
    padding: 60px 0;
}

.content-block {
    margin-bottom: 50px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-block h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.content-block p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content-block img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.content-block ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

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

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

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

    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .header-phone {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

    .glass-card {
        padding: 25px;
    }

    .hero-title {
        font-size: 36px;
    }

    .title-line {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 28px;
    }

    .features-grid,
    .services-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .floating-icon {
        font-size: 30px;
    }

    .floating-shape {
        display: none;
    }

    .services-slider-track {
        height: 400px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .testimonial-text {
        font-size: 18px;
    }

    .contact-form-container {
        padding: 25px;
    }

    .policy-section,
    .content-page-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-content {
        padding: 40px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .mobile-call-btn {
        bottom: 20px;
        right: 15px;
        padding: 12px 18px;
        font-size: 14px;
    }

    .call-text {
        display: none;
    }
}

/* ===== HERO STATS: prevent overflow / keep inside card ===== */
.hero-content .hero-stats{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
  
  .hero-content .stat-item{
    min-width: 0; /* IMPORTANT: allows shrink inside grid */
  }
  
  .hero-content .stat-number{
    /* becomes smaller when space is tight */
    font-size: clamp(18px, 2.2vw, 36px);
    line-height: 1.05;
  
    /* never push layout */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .hero-content .stat-label{
    font-size: 12px;
    line-height: 1.25;
  }
  
  /* when hero column is narrow */
  @media (max-width: 1200px){
    .hero-content .hero-stats{
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }
  
  /* mobile */
  @media (max-width: 640px){
    .hero-content .hero-stats{
      grid-template-columns: 1fr;
    }
    .hero-content .stat-number{
      white-space: normal;
    }
  }
  