
/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
    --primary: #C2AA9B;
    --primary-dark: #a8907f;
    --dark: #0c0f2e;
    --darker: #080a1f;
    --text: #2d2d3a;
    --text-light: #6b6b7b;
    --light: #f7f5f3;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, #C2AA9B 0%, #d4c4b8 50%, #e8ddd6 100%);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--dark);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    color: var(--dark);
    line-height: 1.3;
}

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

section {
    padding: 100px 0;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 20px;
    z-index: 996;
    background: var(--dark);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.back-to-top i {
    font-size: 24px;
    color: var(--primary);
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary);
}

.back-to-top:hover i {
    color: var(--white);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--dark);
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 4px solid rgba(194,170,155,0.2);
    border-top-color: var(--primary);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 0.8s linear infinite;
}

@keyframes animate-preloader {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.4s ease;
    z-index: 997;
    padding: 18px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: rgba(12, 15, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

#header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
}

#header .logo a {
    color: #fff;
    font-family: "Poppins", sans-serif;
}

#header .logo a span {
    color: var(--primary);
}

/*--------------------------------------------------------------
# CTA Button (Header)
--------------------------------------------------------------*/
.get-started-btn {
    color: var(--dark);
    border-radius: 50px;
    padding: 10px 28px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    background: var(--primary);
    border: none;
    font-family: "Poppins", sans-serif;
}

.get-started-btn:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194,170,155,0.4);
}

@media (max-width: 992px) {
    .get-started-btn {
        padding: 8px 20px;
        margin-right: 15px;
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 28px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: var(--primary);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }
    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(12, 15, 46, 0.95);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--white);
    overflow-y: auto;
    transition: 0.3s;
    border-radius: var(--radius);
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 12px 20px;
    font-size: 15px;
    color: var(--dark);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: var(--dark);
    background-color: var(--light);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    min-height: 100vh;
    background: url("../img/hero-bg.jpg") top center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
}

#hero:before {
    content: "";
    background: linear-gradient(135deg, rgba(12,15,46,0.88) 0%, rgba(12,15,46,0.7) 50%, rgba(12,15,46,0.85) 100%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .container {
    position: relative;
    padding-top: 20px;
}

#hero .hero-content {
    max-width: 700px;
}

#hero .hero-badge {
    display: inline-block;
    background: rgba(194,170,155,0.15);
    border: 1px solid rgba(194,170,155,0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-family: "Poppins", sans-serif;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
}

#hero h1 .highlight {
    color: var(--primary);
    position: relative;
}

#hero p.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

#hero .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

#hero .btn-primary-custom {
    background: var(--primary);
    color: var(--dark);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Poppins", sans-serif;
    border: 2px solid var(--primary);
}

#hero .btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

#hero .btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.25);
    font-family: "Poppins", sans-serif;
}

#hero .btn-outline-custom:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

#hero .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

#hero .hero-stats .stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

#hero .hero-stats .stat-item p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 32px;
    }
    #hero p.hero-desc {
        font-size: 16px;
    }
    #hero .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
    #hero .hero-stats .stat-item h3 {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Section Titles
--------------------------------------------------------------*/
.section-tag {
    display: inline-block;
    background: rgba(194,170,155,0.12);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: "Poppins", sans-serif;
}

.section-title {
    padding-bottom: 50px;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaaaaa;
    font-family: "Poppins", sans-serif;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--primary);
    margin: 4px 10px;
}

.section-title p {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: var(--dark);
}

.section-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
}

.section-desc.centered {
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 28px;
    }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    background: var(--white);
}

.services .service-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.services .service-card:hover::before {
    transform: scaleX(1);
}

.services .service-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.services .service-card .service-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.services .service-card:hover .service-icon {
    background: var(--primary);
}

.services .service-card .service-icon i {
    font-size: 28px;
    color: var(--primary-dark);
    transition: all 0.3s;
}

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

.services .service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.services .service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0 0 16px;
}

.services .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: "Poppins", sans-serif;
    transition: all 0.3s;
    text-decoration: none;
}

.services .service-card-link:hover {
    color: var(--primary);
    gap: 10px;
}

/*--------------------------------------------------------------
# About / Founder
--------------------------------------------------------------*/
.about {
    background: var(--light);
    position: relative;
}

.about .about-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.about .about-content .about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
}

.about .about-content .about-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    color: var(--text);
}

.about .about-content .about-list li i {
    color: var(--primary-dark);
    font-size: 22px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about .founder-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about .founder-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    margin-bottom: 20px;
}

.about .founder-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about .founder-card .role {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.about .founder-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about .founder-card .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: var(--light);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    margin: 0 4px;
    transition: all 0.3s;
    font-size: 16px;
}

.about .founder-card .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Process / How We Work
--------------------------------------------------------------*/
.process {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(194,170,155,0.05);
}

.process .section-tag {
    background: rgba(194,170,155,0.15);
}

.process .section-heading,
.process .section-desc {
    color: var(--white);
}

.process .section-desc {
    color: rgba(255,255,255,0.6);
}

.process .process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.process .process-step .step-number {
    width: 60px;
    height: 60px;
    background: rgba(194,170,155,0.1);
    border: 2px solid rgba(194,170,155,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    font-family: "Poppins", sans-serif;
}

.process .process-step h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.process .process-step p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/*--------------------------------------------------------------
# Partners / References
--------------------------------------------------------------*/
.partners {
    background: var(--white);
}

.partner-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.partner-card:hover::before {
    transform: scaleX(1);
}

.partner-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.partner-logo-wrap {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s;
}

.partner-card:hover .partner-logo-wrap {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.partner-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.partner-card .partner-type {
    font-size: 13px;
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.partner-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--light);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s;
}

.partner-badge i {
    font-size: 14px;
    color: var(--primary-dark);
}

.partner-card:hover .partner-badge {
    background: rgba(194,170,155,0.12);
}

.partner-card .partner-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq {
    background: var(--light);
}

.faq .accordion-item {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq .accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq .accordion-button {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    padding: 20px 24px;
    font-family: "Poppins", sans-serif;
    background: transparent;
    box-shadow: none !important;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background: rgba(194,170,155,0.06);
}

.faq .accordion-button::after {
    background-size: 16px;
}

.faq .accordion-body {
    padding: 0 24px 20px 24px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    background: var(--white);
}

.contact .contact-card {
    background: var(--light);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.contact .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact .contact-card .contact-icon {
    width: 56px;
    height: 56px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact .contact-card .contact-icon i {
    font-size: 22px;
    color: var(--dark);
}

.contact .contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.contact .contact-card p,
.contact .contact-card a {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact .contact-card a:hover {
    color: var(--primary-dark);
}

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

.contact .contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact .contact-form-wrapper .form-subtitle {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 28px;
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #e74c3c;
    text-align: left;
    padding: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #27ae60;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #27ae60;
    border-top-color: #eee;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 14px;
    border-radius: var(--radius-sm);
    border: 1px solid #e0e0e0;
    background: var(--white);
    padding: 14px 18px;
    transition: all 0.3s;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194,170,155,0.15);
}

.contact .php-email-form input {
    height: 52px;
}

.contact .php-email-form textarea {
    min-height: 140px;
}

.contact .php-email-form button[type=submit] {
    background: var(--dark);
    border: 0;
    padding: 14px 40px;
    color: var(--white);
    transition: all 0.3s;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.3px;
}

.contact .php-email-form button[type=submit]:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes animate-loading {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(135deg, var(--dark) 0%, #161a4a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(194,170,155,0.06);
}

.cta h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    margin-bottom: 28px;
}

.cta .cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    transition: all 0.3s;
    background: var(--primary);
    color: var(--dark);
    border: 2px solid var(--primary);
}

.cta .cta-btn:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: var(--darker);
    padding: 0 0 30px 0;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

#footer .footer-top {
    background: var(--dark);
    padding: 70px 0 40px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    color: var(--white);
}

#footer .footer-top .footer-info h3 span {
    color: var(--primary);
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255,255,255,0.5);
}

#footer .footer-top h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    position: relative;
    padding-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#footer .footer-top h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 6px;
    color: var(--primary);
    font-size: 14px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: rgba(255,255,255,0.6);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 14px;
}

#footer .footer-top .footer-links ul a:hover {
    color: var(--primary);
}

#footer .footer-top .social-links a {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.6);
    width: 40px;
    height: 40px;
    margin-right: 6px;
    border-radius: 50%;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: var(--primary);
    color: var(--dark);
}

#footer .footer-bottom {
    padding-top: 30px;
    text-align: center;
}

#footer .copyright {
    text-align: center;
    padding-top: 30px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

#footer .credits {
    padding-top: 8px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

#footer .credits a {
    color: var(--primary);
}

/*--------------------------------------------------------------
# Legal Pages (ÁSZF, Adatkezelés)
--------------------------------------------------------------*/
.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 14px;
    color: var(--dark);
}

.legal-page h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: var(--dark);
}

.legal-page p,
.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-page ul li {
    margin-bottom: 6px;
}

.legal-page .table {
    margin-top: 12px;
    margin-bottom: 24px;
}

.legal-page .table th {
    background: var(--light);
    color: var(--dark);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# GDPR Checkbox
--------------------------------------------------------------*/
.gdpr-consent {
    margin-bottom: 8px;
}

.gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.gdpr-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.gdpr-checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #ccc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
    background: var(--white);
}

.gdpr-checkmark::after {
    content: "";
    display: none;
    width: 6px;
    height: 11px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.gdpr-label input[type="checkbox"]:checked ~ .gdpr-checkmark {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.gdpr-label input[type="checkbox"]:checked ~ .gdpr-checkmark::after {
    display: block;
}

.gdpr-label:hover .gdpr-checkmark {
    border-color: var(--primary);
}

.gdpr-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-light);
}

.gdpr-text a {
    color: var(--primary-dark);
    text-decoration: underline;
    font-weight: 600;
}

.gdpr-text a:hover {
    color: var(--dark);
}

/*--------------------------------------------------------------
# Additional custom styles
--------------------------------------------------------------*/

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--primary);
    color: var(--dark);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
