/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a192f;
    --secondary-color: #ff6b35;
    --accent-color: #ff6b35;
    --dark-color: #0a192f;
    --light-color: #f8f9fa;
    --text-color: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(10, 25, 47, 0.1);
    --shadow-hover: 0 8px 30px rgba(10, 25, 47, 0.15);
    --gradient-1: linear-gradient(135deg, #0a192f 0%, #1a3a5a 50%, #2d5a7f 100%);
    --gradient-2: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 50%, #ffa87a 100%);
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cookie-btn:hover {
    background: #e55a2b;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(10, 25, 47, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--white);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--white);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--primary-color);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 1001;
}

.menu-close:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

.fullscreen-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.fullscreen-link {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: -1px;
}

.fullscreen-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--secondary-color);
    transition: width 0.4s ease;
}

.fullscreen-link:hover {
    color: var(--secondary-color);
}

.fullscreen-link:hover::after {
    width: 100%;
}

/* Hero Section - Asymmetric Grid */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-layer {
    position: absolute;
    width: 150%;
    height: 150%;
    border-radius: 50%;
    opacity: 0.6;
    animation: gradientMove 20s ease-in-out infinite;
}

.gradient-layer-1 {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    top: -25%;
    left: -25%;
    animation-delay: 0s;
}

.gradient-layer-2 {
    background: radial-gradient(circle, rgba(10, 25, 47, 0.4) 0%, transparent 70%);
    top: 50%;
    right: -25%;
    animation-delay: 7s;
}

.gradient-layer-3 {
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    bottom: -25%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes gradientMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, 50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, -50px) scale(0.9);
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 60px;
    align-items: center;
}

.hero-main {
    position: relative;
    z-index: 3;
}

.hero-content-wrapper {
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--secondary-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.hero-title {
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--primary-color);
    letter-spacing: -2px;
}

.title-line {
    display: block;
    animation: slideInLeft 0.8s ease-out;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.6s both;
}

.hero-btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn.primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.hero-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
    background: #e55a2b;
}

.hero-btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero-btn.secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 40px;
    animation: fadeIn 1s ease-out 0.8s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.feature-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 25, 47, 0.2);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    background: var(--secondary-color);
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    bottom: 20%;
    left: -15px;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: clamp(60px, 10vw, 120px) 0;
    position: relative;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Services Section - Tabs */
.services {
    background: var(--light-color);
}

.services-header {
    margin-bottom: 60px;
}

.services-tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    position: relative;
    min-width: 100px;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.tab-btn.active::after,
.tab-btn:hover::after {
    width: 80%;
}

.tab-icon {
    font-size: 32px;
    transition: transform 0.3s ease;
}

.tab-btn.active .tab-icon,
.tab-btn:hover .tab-icon {
    transform: scale(1.2);
}

.tab-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.tab-btn.active .tab-label,
.tab-btn:hover .tab-label {
    color: var(--secondary-color);
}

.tab-content-wrapper {
    position: relative;
    min-height: 500px;
}

.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    position: relative;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.tab-image:hover img {
    transform: scale(1.05);
}

.tab-text h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.tab-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    font-size: 16px;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-cta {
    display: inline-block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: #e55a2b;
}

/* Why Choose Section */
.why-choose {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Accordion Section */
.services-accordion {
    background: var(--light-color);
}

.accordion {
    max-width: 900px;
    margin: 60px auto 0;
}

.accordion-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-hover);
}

.accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background: var(--light-color);
}

.accordion-header h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
}

.accordion-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-content {
    padding: 0 30px 25px;
}

.accordion-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.accordion-content ul {
    list-style: none;
    padding-left: 0;
}

.accordion-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.accordion-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* About Section - Statistics */
.about {
    background: var(--white);
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-intro {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-suffix {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 800;
    color: var(--secondary-color);
    display: inline-block;
}

.stat-label {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.detail-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.detail-block p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

/* Process Section */
.process {
    background: var(--light-color);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-arrow {
    font-size: 30px;
    color: var(--primary-color);
    font-weight: 300;
}

/* Contact Section */
.contact {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    padding: 30px;
    background: var(--light-color);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.contact-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.submit-btn {
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--white);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
    font-size: 14px;
}

/* Policy Pages */
.policy-page {
    padding: 140px 0 80px;
    background: var(--light-color);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.policy-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.policy-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.policy-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 16px;
}

.policy-content ul,
.policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: var(--text-color);
}

.policy-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--primary-color);
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    background: var(--white);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.thanks-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.thanks-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 65% 35%;
        gap: 40px;
    }
    
    .tab-content-inner {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        min-height: 400px;
        order: -1;
    }
    
    .hero-image-container {
        transform: none;
    }
    
    .tab-content-inner {
        grid-template-columns: 1fr;
    }
    
    .tab-image {
        order: -1;
        max-height: 300px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-details {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        text-align: center;
    }
    
    .tab-buttons {
        gap: 10px;
    }
    
    .tab-btn {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .tab-icon {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 40px 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .fullscreen-link {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .policy-content h1 {
        font-size: 32px;
    }
    
    .policy-content h2 {
        font-size: 24px;
    }
    
    .thanks-content {
        padding: 50px 30px;
    }
    
    .thanks-content h1 {
        font-size: 36px;
    }
    
    .menu-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
    
    .hero-container {
        max-width: 1600px;
    }
}

@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }
    
    .hero-container {
        max-width: 2000px;
    }
    
    .section-title {
        font-size: 72px;
    }
}

/* Parallax effect for hero */
@media (prefers-reduced-motion: no-preference) {
    .hero-image-container {
        will-change: transform;
    }
}

/* Print styles */
@media print {
    .header,
    .fullscreen-menu,
    .hero-background,
    .hero-shape {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
}
