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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6b9e;
    --accent-color: #ff6b35;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Cookie Consent Banner - Google Consent Mode v2 */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    color: var(--white);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

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

.cookie-consent-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cookie-consent-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-consent-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.cookie-consent-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-consent-description a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-consent-description a:hover {
    color: #e55a2a;
}

/* Cookie Settings Panel */
.cookie-consent-settings {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-top: 10px;
}

.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 8px 0;
}

.cookie-category-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    border-radius: 26px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: var(--white);
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: var(--accent-color);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    background-color: rgba(255, 107, 53, 0.5);
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-toggle input:disabled + .cookie-toggle-slider:before {
    background-color: var(--white);
}

/* Action Buttons */
.cookie-consent-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.cookie-btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-btn-primary:hover {
    background: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cookie-btn:active {
    transform: translateY(0);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

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

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

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

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

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section - Bold & Fresh Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
    display: flex;
    align-items: center;
    background: #0a0e27;
}

/* Geometric Background Shapes */
.hero-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    background: var(--accent-color);
    opacity: 0.08;
    animation: geoFloat 20s ease-in-out infinite;
}

.geo-shape-1 {
    width: 400px;
    height: 400px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.geo-shape-2 {
    width: 300px;
    height: 300px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.geo-shape-3 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

.geo-shape-4 {
    width: 250px;
    height: 250px;
    border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes geoFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Hero Right Panel - Image Slider */
.hero-image-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* Rounded Frame Slider */
.hero-rounded-slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50px 20px 50px 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
}

.hero-rounded-slider:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 107, 53, 0.2),
        0 0 60px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a4d7a;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 1s ease-out;
    transform: scale(1.05);
    z-index: 1;
    overflow: hidden;
    border-radius: 50px 20px 50px 20px;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    border-radius: 50px 20px 50px 20px;
}

.hero-slide-item.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.15) 0%, rgba(26, 77, 122, 0.1) 50%, rgba(10, 14, 39, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
    border-radius: 50px 20px 50px 20px;
}

/* Slider Navigation - Inside rounded frame */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: all;
    z-index: 11;
}

.hero-slider-btn:hover {
    background: rgba(255, 107, 53, 0.4);
    border-color: var(--accent-color);
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.hero-slider-btn svg {
    width: 20px;
    height: 20px;
}

/* Slider Dots - Inside rounded frame */
.hero-slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
}

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

.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: all 0.4s ease;
}

.hero-dot.active,
.hero-dot:hover {
    background: transparent;
}

.hero-dot.active::before,
.hero-dot:hover::before {
    width: 12px;
    height: 12px;
}

/* Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
    pointer-events: none;
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 20px 60px;
}

/* Split Layout */
.hero-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Left Panel - Typography */
.hero-left-panel {
    color: var(--white);
    position: relative;
}

.hero-number-badge {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-mega-title {
    font-size: 7rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.hero-title-word {
    display: block;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
}

.hero-title-word:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-title-word:nth-child(2) {
    animation-delay: 0.5s;
    color: var(--accent-color);
    -webkit-text-stroke: 2px var(--accent-color);
    -webkit-text-fill-color: transparent;
}

.hero-title-word:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 30px;
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.9s forwards;
}

.tagline-accent {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.cta-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-primary {
    background: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.cta-primary .cta-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.cta-primary:hover .cta-bg {
    left: 0;
}

.cta-primary:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.cta-primary .cta-text,
.cta-primary .cta-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary .cta-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-secondary:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.cta-secondary:hover .cta-underline {
    width: 100%;
}

/* Minimal Stats */
.hero-minimal-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

.minimal-stat {
    text-align: left;
}

.stat-big-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.stat-small-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Right Panel - Image Slider */
.hero-right-panel {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-service-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8) translateX(50px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    cursor: pointer;
}

.service-card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    pointer-events: all;
    z-index: 2;
}

.service-card.prev {
    opacity: 0.3;
    transform: scale(0.9) translateX(-30px);
    z-index: 1;
}

.service-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-inner {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-10px);
}

.service-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--accent-color);
    transform: rotate(5deg) scale(1.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    transition: color 0.4s ease;
}

.service-card:hover .service-icon {
    color: var(--white);
}

.service-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    gap: 15px;
    transform: translateX(5px);
}

.service-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover .service-card-bg {
    opacity: 1;
}

/* Navigation Dots */
.service-nav-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

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

.nav-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent-color);
    transition: all 0.3s ease;
}

.nav-dot.active::before,
.nav-dot:hover::before {
    width: 12px;
    height: 12px;
}

.nav-dot.active,
.nav-dot:hover {
    background: transparent;
}

/* Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 80px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.7s forwards;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: center;
}

.trust-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}

/* Cursor Follower */
.hero-cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.hero-section:hover ~ .hero-cursor-follower,
.hero-section .hero-cursor-follower {
    opacity: 0.5;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.btn-primary:hover {
    background: #e55a2a;
    border-color: #e55a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Accordion */
.services-accordion-section {
    background: var(--light-color);
}

.accordion-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 25px 30px;
    background: var(--white);
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background: var(--light-color);
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
    color: var(--accent-color);
}

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

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

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

.accordion-body {
    padding: 0 30px 25px;
    color: var(--text-color);
}

.accordion-body p {
    margin-bottom: 15px;
    line-height: 1.8;
}

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

.accordion-body ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.accordion-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-light);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 5px;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.project-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tags span {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Maintenance Plans */
.maintenance-section {
    background: var(--light-color);
}

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

.plan-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

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

.plan-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Safety Section */
.safety-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.safety-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.safety-features {
    display: grid;
    gap: 25px;
}

.safety-feature h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.safety-feature p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    background: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.policy-updated {
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.policy-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-content h4 {
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-color);
}

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

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-color);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: var(--light-color);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    background: var(--white);
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

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

/* ============================================
   MODERN SECTIONS STYLES - BOLD DESIGN
   ============================================ */

/* Common Section Elements */
.section-header-modern {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.section-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    flex-shrink: 0;
    padding-top: 5px;
}

.section-header-content {
    flex: 1;
}

.section-title-modern {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.title-line {
    display: block;
}

.title-accent {
    color: var(--accent-color);
    -webkit-text-stroke: 2px var(--accent-color);
    -webkit-text-fill-color: transparent;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 53, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

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

.service-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    cursor: pointer;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.service-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.service-card-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-card-link {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-card-link {
    gap: 15px;
}

.service-card-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card-modern:hover .service-card-bg-modern {
    opacity: 1;
}

.service-card-content {
    position: relative;
    z-index: 1;
}

/* About Section Modern */
.about-section-modern {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
    overflow: hidden;
}

.about-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(100px);
}

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

.about-image-modern {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
}

.about-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

.about-content-modern {
    position: relative;
    z-index: 1;
}

.about-lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats-modern {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.about-stat-modern {
    text-align: left;
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 5px;
    font-variant-numeric: tabular-nums;
}

.about-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* Projects Section Modern */
.projects-section-modern {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
    overflow: hidden;
}

.projects-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.project-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-card-modern.project-large {
    grid-column: span 2;
}

.project-image-modern {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 39, 0.8) 100%);
    transition: opacity 0.4s ease;
}

.project-content-modern {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.project-category {
    font-size: 0.85rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.project-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.project-desc-modern {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-link-modern {
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.project-card-modern:hover .project-link-modern {
    gap: 15px;
}

/* Maintenance Plans Modern */
.maintenance-section-modern {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
    overflow: hidden;
}

.maintenance-bg-shape {
    position: absolute;
    bottom: -300px;
    left: -300px;
    width: 800px;
    height: 800px;
    background: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(150px);
}

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

.plan-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.plan-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-card-modern.plan-featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.plan-badge-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.plan-header-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.plan-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
}

.plan-title-modern {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
}

.plan-price-modern {
    margin-bottom: 30px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-color);
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 5px;
}

.plan-features-modern {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features-modern li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.plan-features-modern li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.plan-cta-modern {
    display: inline-block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
}

.plan-cta-modern:hover {
    border-color: var(--accent-color);
    background: var(--accent-color);
    transform: translateY(-2px);
}

.plan-cta-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.plan-cta-primary:hover {
    background: #e55a2a;
    border-color: #e55a2a;
}

/* Safety Section Modern */
.safety-section-modern {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
}

.safety-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safety-content-modern {
    position: relative;
    z-index: 1;
}

.safety-lead {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 50px;
}

.safety-features-modern {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.safety-feature-modern {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.safety-feature-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    flex-shrink: 0;
    padding-top: 5px;
}

.safety-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.safety-feature-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.safety-image-modern {
    position: relative;
}

.safety-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.safety-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.safety-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, transparent 100%);
}

.safety-badge-modern {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px 30px;
    text-align: center;
}

.badge-text {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.badge-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Testimonials Section Modern */
.testimonials-section-modern {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
    overflow: hidden;
}

.testimonials-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.testimonial-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-rating-modern {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text-modern {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-quote-mark {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.2;
    font-weight: 700;
    line-height: 1;
}

/* Contact Section Modern */
.contact-section-modern {
    position: relative;
    padding: 120px 0;
    background: #0a0e27;
    color: var(--white);
    overflow: hidden;
}

.contact-bg-shape {
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: var(--accent-color);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(150px);
}

.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item-modern {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-item-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 3px;
    flex-shrink: 0;
    padding-top: 5px;
}

.contact-item-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-item-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.contact-item-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item-text a:hover {
    text-decoration: underline;
}

.contact-form-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
}

.contact-form-wrapper-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

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

/* Footer Modern */
.main-footer-modern {
    background: #050812;
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content-modern {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.footer-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-text a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-text a:hover {
    text-decoration: underline;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer-links-list a:hover {
    color: var(--accent-color);
}

.footer-bottom-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-modern p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-registration {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        gap: 0;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
    }

    /* Hero Section Mobile */
    .hero-section {
        min-height: auto;
        height: auto;
        padding: 100px 0 60px;
    }

    .hero-main-bg {
        width: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-mega-title {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }

    .hero-title-word {
        display: block;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }

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

    .stat-big-number {
        font-size: 2.5rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-right-panel {
        height: 500px;
        order: -1;
    }

    .hero-rounded-slider {
        border-radius: 30px 15px 30px 15px;
    }

    .hero-slide-item,
    .hero-slide-image,
    .hero-slide-overlay {
        border-radius: 30px 15px 30px 15px;
    }

    .hero-slider-nav {
        padding: 0 15px;
    }

    .hero-slider-btn {
        width: 45px;
        height: 45px;
    }

    .hero-slider-dots {
        bottom: 15px;
        padding: 8px 15px;
    }

    .hero-trust-bar {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px 0;
    }

    .trust-divider {
        display: none;
    }

    .hero-slider-nav {
        padding: 0 20px;
    }

    .hero-slider-btn {
        width: 50px;
        height: 50px;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    /* Modern Sections Mobile */
    .section-header-modern {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .section-title-modern {
        font-size: 2.5rem;
    }

    .section-subtitle-modern {
        font-size: 1rem;
    }

    .services-grid-modern,
    .projects-grid-modern,
    .testimonials-grid-modern,
    .plans-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card-modern.project-large {
        grid-column: span 1;
    }

    .about-split-layout,
    .safety-split-layout,
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-stats-modern,
    .safety-features-modern {
        gap: 25px;
    }

    .plan-card-modern.plan-featured {
        transform: scale(1);
    }

    .footer-content-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-links-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .safety-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .projects-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .thanks-content {
        padding: 40px 25px;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .btn {
        width: 100%;
    }
    
    /* Cookie Consent Banner Mobile */
    .cookie-consent-container {
        padding: 20px 15px;
    }
    
    .cookie-consent-title {
        font-size: 1.2rem;
    }
    
    .cookie-consent-description {
        font-size: 0.9rem;
    }
    
    .cookie-consent-settings {
        padding: 20px 15px;
    }
    
    .cookie-category-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-consent-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero-mega-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-title-word {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 0.9rem;
    }

    .stat-big-number {
        font-size: 2rem;
    }

    .hero-right-panel {
        height: 400px;
    }

    .hero-rounded-slider {
        border-radius: 25px 10px 25px 10px;
    }

    .hero-slide-item,
    .hero-slide-image,
    .hero-slide-overlay {
        border-radius: 25px 10px 25px 10px;
    }

    .hero-slider-btn {
        width: 40px;
        height: 40px;
    }

    .hero-slider-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider-dots {
        bottom: 10px;
        padding: 6px 12px;
        gap: 8px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .accordion-header {
        padding: 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 0 20px 20px;
    }
    
    /* Cookie Consent Banner Small Mobile */
    .cookie-consent-container {
        padding: 15px 12px;
    }
    
    .cookie-consent-title {
        font-size: 1.1rem;
    }
    
    .cookie-consent-description {
        font-size: 0.85rem;
    }
    
    .cookie-consent-settings {
        padding: 15px 12px;
    }
    
    .cookie-category-info h4 {
        font-size: 1rem;
    }
    
    .cookie-category-info p {
        font-size: 0.85rem;
    }
}

/* Image Styles - Ensure proper display */
.hero-slide-item,
.about-image-wrapper img,
.project-image-modern img,
.safety-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Fallback for images that might not load */
.hero-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c6b9e 100%);
    z-index: -1;
}


