/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    /* Colors */
    --primary-color: #1a365d;
    --secondary-color: #2d5a87;
    --accent-color: #e53e3e;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Shadows */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    --border-radius: 1rem;
    --border-radius-sm: 0.5rem;
    --border-radius-xs: 0.375rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.font-display {
    font-family: var(--font-display);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-cookie {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: var(--border-radius-xs);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-cookie-accept:hover {
    background-color: #f7fafc;
}

.btn-cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    background: transparent;
}

.header .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.nav {
    background: transparent;
    border: none;
    padding: 0;
    position: static;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-xs);
    transition: var(--transition);
    background-color: transparent;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

.header .contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    transition: var(--transition);
    font-size: 1rem;
}

.header .contact-item:hover {
    color: #cbd5e0;
}


/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-text .description {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

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

.service-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background-color: var(--bg-light);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 1.5rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background-color: var(--bg-white);
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-answer {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background-color: var(--primary-color);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    backdrop-filter: blur(10px);
}

.contact-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact .contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: white;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    min-height: 70px;
}

.contact .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.contact .contact-item-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact .contact-item i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

.contact .contact-item strong {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.contact .contact-item-details {
    margin-left: 1.6rem;
}

.contact .contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
    line-height: 1.3;
}

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

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: #cbd5e0;
}

.copyright {
    color: #a0aec0;
    font-size: 0.875rem;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    z-index: 1001;
    display: none;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-text .subtitle {
        font-size: 1.125rem;
    }
    
    .hero-text .description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card-header {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .header .contact-info {
        flex-direction: row;
        gap: 0.15rem;
        flex-wrap: nowrap;
        justify-content: center;
        margin-top: 0.1rem;
        width: 100%;
    }
    
    .header {
        padding: 0.3rem 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-left {
        align-items: center;
        gap: 0.5rem;
    }
    
    .header-right {
        align-items: center;
        gap: 0.1rem;
        width: 100%;
    }
    
    .logo {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .header-right .contact-info .contact-item {
        font-size: 0.6rem;
        padding: 0.15rem 0.05rem;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 0.1rem;
        white-space: nowrap;
        min-width: auto;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-right .contact-info .contact-item i {
        font-size: 1.6rem;
    }
    
    .header-right .contact-info .contact-item span {
        display: none;
    }
    
    .nav-links {
        gap: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .header {
        padding: 0.25rem 0;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .header .contact-info {
        gap: 0.1rem;
        margin-top: 0.05rem;
    }
    
    .header-right .contact-info .contact-item {
        font-size: 0.55rem;
        padding: 0.12rem 0.03rem;
    }
    
    .header-right .contact-info .contact-item i {
        font-size: 1.4rem;
    }
    
    .faq-content {
        gap: 1rem;
    }
    
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-text .subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-text .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
        border-radius: var(--border-radius);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card-header {
        gap: 0.75rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-items-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .contact-items-grid .contact-item {
        gap: 0.4rem;
        padding: 0.75rem;
        /* min-height: 30px; */
    }
    
    .contact .contact-item-header {
        gap: 0.4rem;
    }
    
    .contact .contact-item i {
        font-size: 1rem;
    }
    
    .contact .contact-item strong {
        font-size: 0.85rem;
    }
    
    .contact .contact-item-details {
        margin-left: 1.4rem;
    }
    
    .contact .contact-item a {
        font-size: 0.8rem;
    }
    
    .contact-info-card {
        padding: 1.25rem;
    }
    
    .map-container {
        order: -1;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-card-header {
        gap: 0.5rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-title {
        font-size: 0.9rem;
    }
    
    .btn {
        font-size: 0.85rem;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-height: none;
        object-fit: contain;
    }
    
    .contact-info-card {
        padding: 1rem;
    }
}