/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #6EC1E4;
    --color-secondary: #54595F;
    --color-text: #7A7A7A;
    --color-accent: #61CE70;
    --color-white: #FFFFFF;
    --color-black: #111013;
    --color-dark-gray: #424045;
    --color-light-gray: #E5E5E5;

    --font-primary: 'Sora', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    --font-text: 'Inter', sans-serif;

    --container-max-width: 1140px;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text);
    background-color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.hero-section .container {
    max-width: 100%;
    padding: 0 100px;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000000;
    padding: 20px 0;
    z-index: 1000;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 85px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-accent);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-link {
    color: var(--color-white);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--color-accent);
}

.btn-consultation {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-white);
    background-color: #5A9A8A;
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-consultation:hover {
    background-color: #4A8A7A;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('uploads/2024/04/ivosak._Cinestill_800T_film_women_hair_extension_main_banner_fo_f4b806ce-e020-4c80-92c8-2b1a017620df.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    margin-top: 90px;
    padding: 60px 0;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.04);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    padding: 0;
    text-align: left;
    margin: 0;
}

.hero-section h1 {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 500;
    color: var(--color-white);
    line-height: 1.2em;
    margin-bottom: 15px;
}

.hero-section p {
    font-family: var(--font-text);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.6em;
    margin-bottom: 25px;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-white);
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 50px;
    padding: 14px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--color-black);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 400;
    color: var(--color-white);
    text-align: left;
    margin-bottom: 60px;
    padding-left: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 0;
}

.service-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.service-number {
    font-family: var(--font-primary);
    font-size: 90px;
    font-weight: 100;
    color: var(--color-dark-gray);
    text-transform: uppercase;
    line-height: 1em;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.3em;
    margin-bottom: 12px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-content li {
    font-family: var(--font-text);
    font-size: 14px;
    font-weight: 300;
    color: var(--color-light-gray);
    line-height: 1.7em;
    padding-left: 15px;
    position: relative;
}

.service-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-light-gray);
}

/* Contact Page */
.contact-page {
    padding: 180px 0 80px;
    background-color: var(--color-black);
    min-height: calc(100vh - 200px);
}

.page-title {
    font-family: var(--font-primary);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-block h2,
.contact-map h2 {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 10px;
}

.info-item p {
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 300;
    color: var(--color-light-gray);
    line-height: 1.6em;
}

.info-item a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--color-accent);
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 100%;
    height: 350px;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Footer */
.site-footer {
    padding: 30px 0;
    background-color: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 40px;
}

.footer-nav a {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-phone {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: var(--color-accent);
}

.footer-divider {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 400;
}

.footer-instagram {
    color: var(--color-white);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-instagram:hover {
    color: var(--color-accent);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    :root {
        --container-max-width: 1024px;
    }

    .hero-section {
        min-height: 350px;
        padding: 50px 0;
    }

    .hero-section .container {
        padding: 0 60px;
    }

    .hero-content {
        padding: 0;
        max-width: 450px;
    }

    .hero-section h1 {
        font-size: 42px;
    }

    .hero-section p {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 14px;
        padding: 12px 24px;
    }

    .section-title {
        font-size: 28px;
        padding-left: 0;
        text-align: left;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }

    .service-number {
        font-size: 100px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content li {
        font-size: 14px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 767px) {
    :root {
        --container-max-width: 767px;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background-color: rgba(17, 16, 19, 0.98);
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .main-nav a {
        font-size: 18px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-right .social-link {
        display: none;
    }

    .btn-consultation {
        font-size: 12px;
        padding: 10px 18px;
    }

    .hero-section {
        min-height: 300px;
        padding: 40px 0;
        align-items: center;
    }

    .hero-overlay {
        background-color: rgba(0, 0, 0, 0.53);
    }

    .hero-section .container {
        padding: 0 30px;
    }

    .hero-content {
        padding: 0;
        text-align: center;
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .hero-section p {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 12px 22px;
    }

    .services-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 40px;
        padding-left: 0;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .service-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .service-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 30px;
    }

    .service-content h3 {
        width: 100%;
        text-align: center;
    }

    .service-content ul {
        text-align: left;
        width: 100%;
        max-width: 320px;
    }

    .service-number {
        font-size: 70px;
    }

    .service-content h3 {
        font-size: 18px;
    }

    .service-content li {
        font-size: 13px;
    }

    .contact-page {
        padding: 140px 0 60px;
    }

    .map-container {
        height: 300px;
    }

    .page-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-block h2,
    .contact-map h2 {
        font-size: 28px;
    }

    .info-item h3 {
        font-size: 18px;
    }

    .info-item p {
        font-size: 15px;
    }

    .site-footer {
        padding: 25px 0;
    }

    .site-footer .container {
        flex-direction: column;
        gap: 25px;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-phone {
        font-size: 16px;
    }
}
