/* Replacing @import statements with full original stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight-navy: #1a2a3a;
    --soft-white: #f7f8fa;
    --warm-gray: #d9dadb;
    --coral-accent: #ff6f61;
    --golden-beige: #f4d7a6;
    --light-beige: #f7e7ce;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--midnight-navy);
    background: var(--soft-white);
}

h1,
h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

h1.hero-heading {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-style: normal !important;
    font-weight: 800 !important;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 0.5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Header Navigation */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.25rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.logo a {
    font-family: "Playfair Display", serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--midnight-navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo a:hover {
    color: var(--coral-accent);
}

.nav {
    display: flex;
    gap: 2.5rem;
    flex: 1;
    justify-content: center;
}

.nav a {
    color: var(--midnight-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral-accent);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--coral-accent);
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: var(--coral-accent);
}

.nav a.active::after {
    width: 100%;
}

.header-phone {
    color: var(--coral-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.header-phone:hover {
    color: #e55a4f;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--midnight-navy);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 42, 58, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

.hero {
    padding-top: 8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    /* Changed button color from coral to indigo-purple to match design */
    background: #6366f1;
    color: white;
}

.btn-primary:hover {
    /* Updated hover color to darker purple shade */
    background: #4f46e5;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--midnight-navy);
    border: 2px solid var(--midnight-navy);
}

.btn-secondary:hover {
    background: var(--midnight-navy);
    color: white;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: clamp(0.85rem, 1.3vw, 0.9rem);
    background: transparent;
    color: var(--coral-accent);
    border: 2px solid var(--coral-accent);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
}

.btn-small:hover {
    background: var(--coral-accent);
    color: white;
}

.text-center {
    text-align: center;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--soft-white) 0%, #fff 100%);
    padding-top: 8rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
}

.trust-markers {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.marker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--midnight-navy);
    font-weight: 600;
    white-space: nowrap;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(26, 42, 58, 0.1);
}

/* Services Section */
.services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--soft-white);
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* Portfolio Section */
.portfolio {
    background: var(--soft-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.portfolio-item p {
    padding: 1rem;
    text-align: center;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    background: var(--light-beige);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Process Section */
.process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--coral-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* Calculator Section */
.calculator {
    background: var(--midnight-navy);
    color: white;
}

.calculator h2 {
    color: white;
}

.calculator-form {
    background: white;
    padding: 3rem;
    border-radius: 18px;
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--midnight-navy);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--warm-gray);
    border-radius: 8px;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--coral-accent);
}

.calculator-result {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 1rem;
}

.price {
    color: var(--midnight-navy);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price span {
    color: var(--coral-accent);
}

/* Reviews Section */
.reviews {
    background: var(--soft-white);
}

.rating {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--coral-accent);
    margin-bottom: 3rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.review-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--coral-accent);
    line-height: 1;
}

.review-author {
    font-weight: 600;
    color: var(--midnight-navy);
}

/* About Section */
.about {
    background: var(--light-beige);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* Animations - all content visible by default */
.fade-in,
.fade-in-left,
.fade-in-right,
.fade-in.animate-on-scroll,
.fade-in.animate-on-scroll.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: none;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--coral-accent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #e55a4f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
}

/* FAQ Section */
.faq {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--soft-white);
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--coral-accent);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 111, 97, 0.05);
}

.faq-item h3 {
    color: var(--midnight-navy);
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--coral-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-item.active {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: var(--soft-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.form-note {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
    font-style: italic;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-weight: 600;
    color: var(--midnight-navy);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--coral-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #e55a4f;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--midnight-navy);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav,
.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-nav a,
.footer-social a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-social a:hover {
    color: var(--coral-accent);
}

.footer-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Images always visible */
img[loading="lazy"] {
    opacity: 1;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    border-radius: 4px;
}

.skeleton-card {
    height: 300px;
    border-radius: 12px;
}

/* Blur-up effect disabled */
.blur-up {
    filter: none;
}

/* Toast notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.toast.success {
    border-left: 4px solid #4caf50;
}

.toast.error {
    border-left: 4px solid #f44336;
}

.toast.warning {
    border-left: 4px solid #ff9800;
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-message {
    flex: 1;
    color: var(--midnight-navy);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--midnight-navy);
}

/* Form validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f44336;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #4caf50;
}

.form-error {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .form-error {
    display: block;
}

/* Progress bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--coral-accent);
    width: 0;
    transition: width 0.3s ease;
    z-index: 10001;
}

/* Enhanced hover effects */
.service-card,
.benefit-card,
.review-card,
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.service-card::before,
.benefit-card::before,
.review-card::before,
.portfolio-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 97, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before,
.benefit-card:hover::before,
.review-card:hover::before,
.portfolio-item:hover::before {
    left: 100%;
}

/* Loading spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 111, 97, 0.2);
    border-top-color: var(--coral-accent);
    border-radius: 50%;
    animation: spinner-rotate 0.8s linear infinite;
}

@keyframes spinner-rotate {
    to {
        transform: rotate(360deg);
    }
}

/* Removed shop-specific styles, moved to PHP files */
/* Keep only global styles in main stylesheet */

/* Responsive adjustments */
@media (max-width: 968px) {
    .nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        display: block;
        width: 100%;
        max-width: 260px;
        margin: 8px auto 12px auto;
        text-align: center;
        order: -1;
    }

    .hero-image img {
        max-width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 12px;
    }

    .about-image {
        order: -1;
    }

    .contact-form {
        margin-bottom: 3rem;
    }

    .contact-content {
        max-width: 600px;
    }

    .calculator-form {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav,
    .footer-social {
        margin-top: 1rem;
    }
}
