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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* FontAwesome Icons */
.feature-icon i,
.service-icon i,
.contact-icon i,
.info-icon i,
.badge-icon i,
.animation-placeholder i {
    font-size: inherit;
    color: inherit;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #4a9b8e;
}

.service-icon i {
    font-size: 3rem;
    color: #4a9b8e;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #4a9b8e;
}

.info-icon i {
    font-size: 1.2rem;
    color: #4a9b8e;
}

.badge-icon i {
    font-size: 1rem;
    color: #4a9b8e;
}

.animation-placeholder i {
    font-size: 4rem;
    color: #4a9b8e;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo-img {
    height: 50px;
    width: auto;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

/* Navigation */
.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4a9b8e;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4a9b8e;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #4a9b8e;
    color: white;
}

.btn-primary:hover {
    background: #3d8277;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 155, 142, 0.3);
}

.btn-outline {
    background: transparent;
    color: #4a9b8e;
    border: 2px solid #4a9b8e;
}

.btn-outline:hover {
    background: #4a9b8e;
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234a9b8e" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 155, 142, 0.1);
    color: #4a9b8e;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-primary {
    color: #4a9b8e;
}

.hero-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-text {
    font-weight: 600;
    color: #4a9b8e;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4a9b8e;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #666;
    line-height: 1.6;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-info {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #4a9b8e;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #4a9b8e;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    font-size: 1.2rem;
    color: #4a9b8e;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.info-text {
    color: #666;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fffe;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a9b8e;
    margin-top: 1rem;
    text-align: center;
}

.services-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.treatment-process {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #4a9b8e;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4a9b8e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #4a9b8e;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: #4a9b8e;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #4a9b8e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3d8277;
}

.contact-text {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.form {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 12px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a9b8e;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #4a9b8e;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.form-disclaimer a {
    color: #4a9b8e;
    text-decoration: none;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: #f8fffe;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.booking-animation {
    margin-bottom: 1rem;
}

.animation-placeholder {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.booking-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #4a9b8e;
}

.booking-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.booking-powered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.fresha-logo {
    height: 20px;
    width: auto;
}

.booking-button {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-button .btn {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: 2px solid #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.map-widget {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.map-container {
    height: 300px;
}

.map-info {
    padding: 1.5rem;
    background: #f8fffe;
}

.map-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #4a9b8e;
}

.map-address {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4a9b8e;
}

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

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #4a9b8e;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    color: #999;
}

/* Services Table Styling */
.services-table {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2rem;
}

.service-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    border-bottom: 1px solid #e8f5f3;
    align-items: center;
}

.service-row:last-child {
    border-bottom: none;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    text-align: right;
}

.service-duration {
    font-size: 0.9rem;
    color: #4a9b8e;
    font-weight: 600;
    background: rgba(74, 155, 142, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4a9b8e;
}

.services-section.specialized {
    background: #f8fffe;
}

.services-section.advanced {
    background: white;
}

.service-note {
    background: #e8f5f3;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #4a9b8e;
}

.service-note p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.section-booking {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e8f5f3;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .section-booking {
        flex-direction: column;
        align-items: center;
    }
    
    .section-booking .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Policy Pages Styling */
.main-content {
    min-height: 100vh;
    background: #f8fffe;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.content-wrapper h1 {
    color: #4a9b8e;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e8f5f3;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: #4a9b8e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e8f5f3;
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.policy-section h4 {
    color: #4a9b8e;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #333;
}

.policy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #333;
}

.policy-section a {
    color: #4a9b8e;
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    color: #3d8277;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .service-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .service-details {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem 2rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .booking-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 200px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        min-width: 0;
        flex: 1;
    }
    
    .feature-text {
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-features {
        gap: 0.5rem;
    }
    
    .feature-text {
        font-size: 0.8rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        max-width: 250px;
    }
    
    .container {
        padding: 0 10px;
    }
}

/* Gel Nails Section Styles */
.gel-nails-section {
    padding: 80px 0;
    background: #f8fffe;
}

.gel-nails-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.gel-nails-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gel-nails-features {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.gel-nails-services h3 {
    color: #2c4b65;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.gel-nails-services ul {
    list-style: none;
    padding: 0;
}

.gel-nails-services li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e8f5f3;
    color: #666;
    font-weight: 500;
}

.gel-nails-services li:last-child {
    border-bottom: none;
}

.gel-nails-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.gel-nails-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gel-nails-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.3);
    transform-origin: center;
}

.gel-nails-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(74, 155, 142, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Accent Colors */
.text-accent {
    color: #e87967;
}

.bg-accent {
    background-color: #e87967;
}

.border-accent {
    border-color: #e87967;
}

.btn-accent {
    background-color: #e87967;
    color: white;
    border: none;
}

.btn-accent:hover {
    background-color: #d66b5a;
    color: white;
}


.badge-text {
    color: white;
}

@media (max-width: 768px) {
    .gel-nails-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gel-nails-text {
        order: 2;
    }
    
    .gel-nails-image {
        order: 1;
    }
    
    .gel-nails-features {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .gel-nails-actions {
        justify-content: center;
    }
    
    .gel-nails-img {
        height: 300px;
        transform: scale(1.2);
    }
}

