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

:root {
    /* Divine-inspired warm color palette */
    --primary-orange: #FF8C42;
    --deep-saffron: #FF6B1A;
    --warm-gold: #FFB84D;
    --sacred-red: #C7522A;
    --earth-brown: #8B4513;
    --cream: #FFF8E7;
    --warm-white: #FFFBF5;
    --divine-blue: #4A90E2;
    --trust-green: #27AE60;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-white);
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-orange), var(--deep-saffron));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo i {
    font-size: 2.5rem;
    color: var(--warm-gold);
}

.logo-text {
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.15;
}

.logo-text small {
    display: block;
    font-family: 'Inter', 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.contact-info {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--cream), var(--warm-white));
    padding: 4rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

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

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

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.hero-image {
    text-align: center;
    color: var(--primary-orange);
}

.hero-image i {
    font-size: 12rem;
    opacity: 0.3;
}

.hero-illustration {
    width: 100%;
    max-width: 360px;
    opacity: 0.95;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--deep-saffron));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
}

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

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--warm-white);
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-hover);
    border-color: var(--primary-orange);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--warm-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--cream), var(--warm-white));
}

.about-section {
    padding: 5rem 0;
    background: var(--warm-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image { position: relative; }

.about-image-hex {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
    background: white;
}

.about-image-hex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-star {
    position: absolute;
    top: -18px;
    left: 18%;
    color: var(--primary-orange);
    font-size: 3rem;
    transform: rotate(10deg);
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.2rem;
    background: white;
    border: 2px solid #F3F3F3;
    border-radius: 14px;
    box-shadow: 0 6px 16px var(--shadow);
}

.stat-item i {
    color: var(--primary-orange);
    font-size: 1.4rem;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--deep-saffron);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-item i {
    font-size: 3rem;
    color: var(--trust-green);
    margin-bottom: 1rem;
}

.trust-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Sections */
.callback-section,
.inquiry-section {
    padding: 5rem 0;
}

.callback-section {
    background: var(--warm-white);
}

.inquiry-section {
    background: var(--cream);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow);
}

.form-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.form-content p {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--warm-gold);
}

.footer-section p {
    color: #BDC3C7;
    line-height: 1.6;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer .contact-item {
    color: #BDC3C7;
    text-decoration: none;
    padding: 0;
    background: none;
    border-radius: 0;
}

.footer .contact-item:hover {
    color: var(--warm-gold);
    background: none;
    transform: none;
}

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

.service-list li {
    color: #BDC3C7;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-list li::before {
    content: "▶";
    color: var(--primary-orange);
    position: absolute;
    left: 0;
}

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

.footer-bottom p {
    color: #BDC3C7;
    margin: 0.5rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .header-content {
        text-align: center;
        justify-content: center;
        gap: 1rem;
    }

    .logo {
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }

    .contact-info {
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .contact-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 3rem 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-illustration {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-image i {
        font-size: 6rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        min-width: 100%;
        padding: 0.9rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .trust-features {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 3rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-image {
        display: flex;
        justify-content: center;
    }

    .about-image-hex {
        max-width: 280px;
        margin: 0 auto;
    }

    .about-star {
        font-size: 2rem;
        top: -10px;
        left: 15%;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .callback-section,
    .inquiry-section {
        padding: 3rem 0;
    }

    .form-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-content h2 {
        font-size: 1.8rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo i {
        font-size: 2rem;
    }

    .contact-item {
        font-size: 0.85rem;
        padding: 0.35rem 0.7rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-illustration {
        max-width: 240px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .about-image-hex {
        max-width: 240px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 1.4rem;
    }

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

    .form-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .form-content h2 {
        font-size: 1.6rem;
    }

    .form-content p {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.95rem;
        padding: 0.85rem 1.25rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for forms */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
}

.form-loading .btn {
    background: #ccc;
    cursor: not-allowed;
}

/* Success message styles */
.success-message {
    background: var(--trust-green);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}

/* Error message styles */
.error-message {
    background: var(--sacred-red);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
    display: none;
}