/* 3.de UG - Events & Technical Services Theme */
/* Color Palette: Dynamic Orange (#FF6B00) and Dark Gray (#2D2D2D) */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #2D2D2D;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    --primary-orange: #FF6B00;
    --primary-orange-dark: #E55F00;
    --primary-orange-light: #FF8533;
    --dark-gray: #2D2D2D;
    --medium-gray: #4A4A4A;
    --light-gray: #F5F5F5;
    --text-gray: #666;
    --white: #FFFFFF;
    --black: #000000;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --header-height: 80px;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    font-weight: 900;
    font-size: 16px;
    border-radius: 8px;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-gray);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-gray);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-orange);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger {
    background-color: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-orange-light), var(--primary-orange));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--dark-gray);
    border: 2px solid var(--dark-gray);
}

.btn-secondary:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.btn svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(45, 45, 45, 0.7) 100%);
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.page-hero-small {
    min-height: 300px;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background-color: var(--dark-gray);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
    padding: 100px 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    height: 220px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.category-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-orange);
    font-weight: 600;
}

.category-link:hover {
    gap: 12px;
}

.category-link::after {
    content: '\2192';
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-text .section-title {
    text-align: left;
    margin-bottom: 15px;
}

.why-us-text .section-subtitle {
    text-align: left;
    margin: 0 0 40px 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.benefit-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.benefit-content p {
    color: var(--text-gray);
    font-size: 15px;
}

.why-us-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: 100px 0;
    background-color: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 25px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.step-content p {
    color: var(--text-gray);
    font-size: 15px;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.project-card.project-large {
    grid-column: span 2;
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}

.project-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-orange);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

.project-overlay h3 {
    font-size: 20px;
    color: var(--white);
}

/* ============================================
   PREMIUM SECTION
   ============================================ */
.premium-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2D2D2D 100%);
    position: relative;
}

.premium-badge {
    text-align: center;
    margin-bottom: 20px;
}

.premium-badge span {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 20px;
}

.premium-section .section-title {
    color: var(--white);
}

.premium-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.premium-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.premium-card:hover {
    transform: translateY(-10px);
}

.premium-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    border-radius: 15px;
    z-index: 2;
}

.premium-card-image {
    height: 200px;
    overflow: hidden;
}

.premium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-card-content {
    padding: 30px;
}

.premium-card-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.premium-card-content > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.premium-features {
    margin-bottom: 25px;
}

.premium-features li {
    padding: 8px 0;
    color: var(--medium-gray);
    font-size: 14px;
    position: relative;
    padding-left: 25px;
}

.premium-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 700;
}

.premium-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.premium-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-orange);
}

/* ============================================
   SERVICE SECTIONS
   ============================================ */
.service-section {
    padding: 100px 0;
    background-color: var(--white);
}

.service-section.alternate {
    background-color: var(--light-gray);
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.service-intro {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-details {
    margin-bottom: 30px;
}

.service-detail-item {
    margin-bottom: 20px;
}

.service-detail-item h4 {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.service-detail-item p {
    color: var(--text-gray);
    font-size: 15px;
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
    padding: 100px 0;
    background-color: var(--white);
}

.services-overview.alternate-bg {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.service-box {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.services-overview.alternate-bg .service-box {
    background-color: var(--white);
}

.service-box:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

.service-box:hover h4 {
    color: var(--white);
}

.service-box:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.service-box:hover .service-box-icon {
    background-color: var(--primary-orange);
}

.service-box-icon {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.services-overview.alternate-bg .service-box-icon {
    background-color: var(--light-gray);
}

.service-box-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary-orange);
}

.service-box:hover .service-box-icon svg {
    color: var(--white);
}

.service-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-gray);
    transition: var(--transition);
}

.service-box p {
    color: var(--text-gray);
    font-size: 13px;
    transition: var(--transition);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-intro {
    padding: 100px 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.about-text .lead {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-icon svg {
    width: 36px;
    height: 36px;
    color: var(--white);
}

.mission-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Team/CEO Section */
.team-section {
    padding: 100px 0;
    background-color: var(--white);
}

.ceo-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.ceo-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ceo-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.ceo-header {
    margin-bottom: 25px;
}

.ceo-header h3 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.ceo-title {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
}

.ceo-bio {
    font-size: 18px;
    color: var(--medium-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.ceo-content p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.ceo-quote {
    padding: 30px;
    background-color: var(--light-gray);
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 8px 8px 0;
}

.ceo-quote blockquote {
    font-size: 18px;
    font-style: italic;
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
}

.value-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-orange);
    opacity: 0.3;
    margin-bottom: 15px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-gray);
}

.value-item p {
    color: var(--text-gray);
    font-size: 15px;
}

/* History Section */
.history-section {
    padding: 100px 0;
    background-color: var(--white);
}

.history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.history-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.history-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.location-info {
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    margin-top: 30px;
}

.location-info h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.location-info p {
    margin: 0;
    color: var(--medium-gray);
}

.history-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.form-intro {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    cursor: pointer;
}

.form-checkbox label {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--primary-orange);
}

.form-checkbox label a:hover {
    text-decoration: underline;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--primary-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact-text p,
.contact-text a {
    color: var(--text-gray);
    font-size: 15px;
}

.contact-text a:hover {
    color: var(--primary-orange);
}

.contact-info-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* FAQ */
.contact-faq .faq-item {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.contact-faq .faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-faq .faq-item h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

.contact-faq .faq-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */
.legal-section {
    padding: 80px 0;
    background-color: var(--white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 28px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-orange);
}

.legal-block h3 {
    font-size: 20px;
    color: var(--dark-gray);
    margin: 25px 0 15px;
}

.legal-block p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-block a {
    color: var(--primary-orange);
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-block strong {
    color: var(--dark-gray);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta .btn-primary {
    background-color: var(--white);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary:hover {
    background-color: var(--dark-gray);
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--dark-gray);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    padding: 6px 10px;
    font-size: 14px;
}

.footer-logo .logo-text {
    color: var(--white);
    font-size: 16px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact span {
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media screen and (max-width: 1024px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-grid .premium-card:last-child {
        grid-column: span 2;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card.project-large {
        grid-column: span 2;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-number {
        font-size: 36px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .why-us-content {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        order: -1;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .premium-grid {
        grid-template-columns: 1fr;
    }

    .premium-grid .premium-card:last-child {
        grid-column: span 1;
    }

    .service-content {
        grid-template-columns: 1fr;
    }

    .service-section.alternate .service-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .ceo-profile {
        grid-template-columns: 1fr;
    }

    .ceo-image img {
        height: 350px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .history-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card.project-large {
        grid-column: span 1;
    }

    .project-card {
        height: 200px;
    }

    .project-overlay {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 30px;
    }

    .section-title {
        font-size: 26px;
    }

    .premium-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .premium-card-footer .btn {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}
