/* ================================
   VARIABLES & RESET
   ================================ */

:root {
    /* Colors */
    --primary-bg: #20252C;
    --primary-accent: #FF6B35;
    --accent-yellow: #FFE66D;
    --accent-blue: #247BA0;
    --accent-teal: #70C1B3;
    --text-primary: #FFFFFF;
    --text-secondary: #CCCCCC;
    --text-dark: #20252C;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --section-padding-mobile: 60px 0;
    
    /* Transitions */
    --transition-base: all 0.3s ease;
    --transition-fast: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

iframe {
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(32, 37, 44, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-base);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    position: relative;
}

.nav-logo a {
    font-size: 28px;
    font-weight: var(--font-weight-extrabold);
    color: var(--text-primary);
    text-transform: lowercase;
}

.nav-logo a:hover {
    color: var(--primary-accent);
}

/* Hidden checkbox for mobile menu */
.menu-toggle-checkbox {
    display: none;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-weight: var(--font-weight-semibold);
    padding: 10px 0;
    position: relative;
    transition: var(--transition-base);
}

.nav-link:hover {
    color: var(--primary-accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

/* Burger Menu Button */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
}

/* ================================
   MOBILE NAVIGATION
   ================================ */

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary-bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-base);
        z-index: 999;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 0;
    }
    
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-base);
        z-index: 998;
    }
    
    /* Mobile menu active state */
    .menu-toggle-checkbox:checked + .nav .nav-menu {
        right: 0;
    }
    
    .menu-toggle-checkbox:checked ~ .nav-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    /* Burger animation */
    .menu-toggle-checkbox:checked + .nav .nav-burger .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle-checkbox:checked + .nav .nav-burger .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle-checkbox:checked + .nav .nav-burger .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ================================
   BUTTONS & FORMS
   ================================ */

.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: var(--font-weight-semibold);
    text-align: center;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-accent), #FF8A65);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-accent);
}

.btn-secondary:hover {
    background: var(--primary-accent);
    color: var(--text-primary);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-bg) 0%, #2a3038 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/45tBaW.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-extrabold);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-primary), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* ================================
   SECTIONS LAYOUT
   ================================ */

.section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    background: linear-gradient(135deg, #1a1f25 0%, var(--primary-bg) 100%);
}

.about-title {
    font-size: 2rem;
    color: var(--primary-accent);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-accent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 70px;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 80%;
    max-width: 80%;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services {
    background: var(--primary-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: linear-gradient(135deg, #2a3038 0%, #1a1f25 100%);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid rgba(255, 107, 53, 0.1);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-accent), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ================================
   ADVANTAGES SECTION
   ================================ */

.advantages {
    background: linear-gradient(135deg, #1a1f25 0%, var(--primary-bg) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.advantage-item h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.advantage-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */

.testimonials {
    background: var(--primary-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, #2a3038 0%, #1a1f25 100%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: var(--font-weight-bold);
}

.author-info h5 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ================================
   PROCESS SECTION
   ================================ */

.process {
    background: linear-gradient(135deg, #1a1f25 0%, var(--primary-bg) 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.process-step h4 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   CONTACT FORM SECTION
   ================================ */

.contact {
    background: var(--primary-bg);
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, #2a3038 0%, #1a1f25 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: var(--font-weight-semibold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: var(--transition-base);
}

.form-group select option {
    background: var(--primary-bg);
    color: var(--text-primary);
    padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-submit {
    text-align: center;
}

/* ================================
   CONTACT INFO SECTION
   ================================ */

.contact-info {
    background: linear-gradient(135deg, #1a1f25 0%, var(--primary-bg) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-details {
    padding: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-accent);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.contact-text h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-text p {
    color: var(--text-secondary);
}

.contact-map img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
    border-radius: 20px;
    max-width: 100%;
    display: block;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: #1a1f25;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.8rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--primary-accent);
    margin-bottom: 20px;
    text-transform: lowercase;
}

.footer-subtitle {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--primary-accent);
}

.footer-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--primary-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-secondary);
}

/* ================================
   COOKIE BANNER
   ================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-bg), #2a3038);
    border-top: 2px solid var(--primary-accent);
    padding: 20px;
    z-index: 1000;
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-base);
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    gap: 20px;
}

.cookie-text h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.cookie-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: var(--primary-accent);
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* ================================
   ANIMATIONS
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    :root {
        --section-padding: var(--section-padding-mobile);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .google-map {
        height: 300px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .google-map iframe {
        min-height: 280px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details {
        padding: 20px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .google-map {
        height: 250px;
        margin: 0;
        border-radius: 15px;
    }
    
    .google-map iframe {
        min-height: 240px;
        border-radius: 15px;
    }
    
    .contact-details {
        padding: 15px;
    }
    
    .contact-item {
        padding: 15px;
        margin-bottom: 20px;
    }
} 