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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Material Icons Base */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 48px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, #345B6D 0%, #4A6B7D 50%, #5A7B8D 100%);
    height: 4px;
    width: 100%;
}

/* Header */
.header {
    background: #FFFFFF;
    color: #2c3e50;
    padding: 1.5rem 0;
    box-shadow: 0 2px 12px rgba(52, 91, 109, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(52, 91, 109, 0.2);
}

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

.logo {
    position: relative;
    overflow: hidden;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.logo-img {
    max-height: 144px;
    width: auto;
    height: auto;
    transition: opacity 0.3s;
    display: block;
    position: relative;
}

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


.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
    color: #5A7FA8;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Navigation */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover {
    color: #6B7F9A;
}

.nav-menu a.active {
    color: #6B7F9A;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #9EADC2 0%, #B8C8D8 50%, #D0DCE8 100%);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

/* Hamburger Menu Button */
.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 28px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Active state - X icon */
.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    min-width: 200px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background-color: #F0F4F8;
    color: #6B7F9A;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #E8EDF2 0%, #F0F4F8 25%, #F5F7FA 50%, #FAFBFC 75%, #FFFFFF 100%);
    padding: 4rem 0 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg width='1200' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q300,0 600,50 T1200,50 L1200,100 L0,100 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

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

.hero-text {
    flex: 1;
}

.hero-text h2 {
    font-size: 3rem;
    color: #5A6B7F;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(90, 107, 127, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-portrait {
    width: 300px;
    height: 300px;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.portrait-placeholder svg {
    width: 100%;
    height: 100%;
}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #9EADC2 0%, #B8C8D8 50%, #D0DCE8 100%);
    color: #2C3E50;
    box-shadow: 0 4px 8px rgba(158, 173, 194, 0.3);
    border: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #8E9DB2 0%, #A8B8C8 50%, #C0CCD8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(158, 173, 194, 0.4);
    color: #1C2E40;
}

.btn-secondary {
    background: linear-gradient(135deg, #E8EDF2 0%, #F0F4F8 100%) !important;
    color: #5A6B7F !important;
    font-weight: 600 !important;
    border: 1px solid rgba(184, 200, 216, 0.4) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 5px !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #D8E0E8 0%, #E8EDF2 100%) !important;
    color: #4A5B6F !important;
    border-color: rgba(184, 200, 216, 0.6) !important;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
    background-color: #ffffff;
}

/* Services Preview Section */
.services-preview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 50%, #FFFFFF 100%);
}

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

.services-preview-header h3 {
    font-size: 2.5rem !important;
    color: #5A6B7F !important;
    margin-bottom: 1rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.services-preview-header p {
    font-size: 1.1rem !important;
    color: #666 !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
    text-align: center !important;
    padding: 0 1rem;
}

.services-preview-header a {
    color: #6B7F9A;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(184, 200, 216, 0.5);
    transition: all 0.3s;
}

.services-preview-header a:hover {
    color: #5A6B7F;
    border-bottom-color: #B8C8D8;
}

.services-preview-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 200, 216, 0.2);
}

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

.service-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFBFC 50%, #F5F7FA 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 200, 216, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(158, 173, 194, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(158, 173, 194, 0.2);
    border-color: rgba(184, 200, 216, 0.6);
    background: linear-gradient(180deg, #FFFFFF 0%, #F5F7FA 50%, #E8EDF2 100%);
}

.service-icon {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    height: 90px !important;
    width: 90px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EDF2 50%, #DCE4EA 100%) !important;
    border-radius: 50% !important;
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
}

.service-icon .material-symbols-outlined {
    font-size: 48px !important;
    color: #6B7F9A !important;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 48 !important;
    transition: all 0.3s;
    display: inline-block !important;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #E8EDF2 0%, #DCE4EA 50%, #D0DCE8 100%) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(158, 173, 194, 0.25);
}

.service-card:hover .service-icon .material-symbols-outlined {
    color: #5A6B7F;
    transform: scale(1.1);
    font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}

.service-card h3 {
    color: #5A6B7F;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card h3 a {
    color: #5A6B7F;
    text-decoration: none;
    transition: color 0.3s;
}

.service-card h3 a:hover {
    color: #6B7F9A;
}

.service-card p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}


/* Sections */
.intro,
.service-area {
    padding: 3rem 0;
    background-color: white;
}

.intro h3,
.service-area h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #5A6B7F;
}

.intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #555;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #E8EDF2 0%, #F0F4F8 30%, #F5F7FA 60%, #FAFBFC 100%);
    color: #5A6B7F;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(184, 200, 216, 0.25);
}

.page-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Content Section */
.content {
    padding: 3rem 0;
    background-color: white;
}

.content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #5A6B7F;
}

.content h4 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #6B7F9A;
}

.content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #F5F7FA 0%, #FAFBFC 50%, #FFFFFF 100%);
    margin-top: 2rem;
    border-top: 1px solid rgba(184, 200, 216, 0.25);
}

.cta-section h3 {
    margin-bottom: 1.5rem;
    color: #5A6B7F;
}

/* Contact */
.contact {
    padding: 3rem 0;
}

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h4 {
    color: #5A6B7F;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p {
    color: #555;
}

.contact-item a {
    color: #708090;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #6B7F9A;
}

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

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form h3 {
    color: #5A6B7F;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5A6B7F;
    font-weight: 500;
}

.form-group fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.form-group legend {
    display: block;
    margin-bottom: 0.5rem;
    color: #5A6B7F;
    font-weight: 500;
    font-size: 1rem;
}

.g-recaptcha {
    margin: 1rem 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #B8C8D8;
    box-shadow: 0 0 0 3px rgba(184, 200, 216, 0.15);
}

/* Form Validation States */
.form-group input.valid,
.form-group textarea.valid {
    border-color: #2e7d32;
    background-color: #e8f5e9;
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #c62828;
    background-color: #ffebee;
}

/* Field Error Messages */
.field-error {
    display: block;
    color: #c62828;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    font-weight: 600;
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    animation: slideDown 0.3s ease;
    position: relative;
    z-index: 10;
}

/* Float success message near submit button */
.form-success.float-message {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message .material-symbols-outlined {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.form-success {
    background: #c8e6c9;
    color: #1b5e20;
    border: 2px solid #2e7d32;
}

.form-success .material-symbols-outlined {
    color: #2e7d32;
}

.form-error {
    background: #ffcdd2;
    color: #b71c1c;
    border: 2px solid #c62828;
}

.form-error .material-symbols-outlined {
    color: #c62828;
}

.form-message strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.form-message p {
    margin: 0;
    font-size: 0.9rem;
}

/* Loading State */
.btn-primary.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
    pointer-events: none;
}

.btn-primary.loading::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
    background-color: #ffffff;
}

.portfolio h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #5A6B7F;
    text-align: center;
}

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

.portfolio-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.portfolio-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
    text-align: center;
}

.portfolio-preview {
    width: 100%;
    height: 200px;
    background-color: #E3F2FD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.portfolio-item h4 {
    color: #5A6B7F;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.portfolio-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #9EADC2 0%, #B8C8D8 50%, #D0DCE8 100%);
    color: #2C3E50;
    padding: 2rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 1px solid rgba(184, 200, 216, 0.4);
}

.footer p {
    margin-bottom: 0.5rem;
    color: #3C4E60;
}

.footer a {
    color: #4A5B6F;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #2C3E50;
}

.footer a:hover {
    text-decoration: underline;
}

/* Service Area Map */
.service-area-map {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.service-area-map h3 {
    text-align: center;
    font-size: 2rem;
    color: #5A6B7F;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-container {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-portrait {
        width: 250px;
        height: 250px;
    }

    .contact .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Thinner header on mobile */
    .header {
        padding: 0.75rem 0;
    }
    
    .logo-img {
        max-height: 80px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Show hamburger button */
    .menu-toggle {
        display: block;
    }
    
    /* Hide menu by default on mobile */
    .nav-menu {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        margin-top: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    /* Show menu when active */
    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        padding-left: 1rem;
        background: #f5f5f5;
        margin-top: 0.5rem;
        margin-top: 0.5rem;
        box-shadow: none;
    }

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

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

    .service-cards {
        grid-template-columns: 1fr;
    }

    .hero-portrait {
        width: 200px;
        height: 200px;
    }
}

/* FAQ Styles */
.faq-intro {
    background: #f8f9fa;
    padding: 2rem 0;
    text-align: center;
}

.faq-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
}

.faq-content {
    padding: 3rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h3 {
    color: #345B6D;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #5A7FA8;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(52, 91, 109, 0.1);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question.active {
    background: #f0f4f8;
    color: #345B6D;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #5A7FA8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #555;
}

.faq-answer a {
    color: #5A7FA8;
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
    color: #345B6D;
}

/* FAQ CTA Section */
.faq-cta {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f7 100%);
    padding: 3rem 0;
    text-align: center;
    margin-top: 3rem;
}

.faq-cta h3 {
    color: #345B6D;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.faq-contact-info {
    margin: 1.5rem 0;
}

.faq-contact-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.faq-contact-info a {
    color: #5A7FA8;
    text-decoration: none;
    font-weight: 600;
}

.faq-contact-info a:hover {
    text-decoration: underline;
    color: #345B6D;
}

/* FAQ Mobile Responsiveness */
@media (max-width: 768px) {
    .faq-category h3 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

/* FAQ Preview Section on Home Page */
.faq-preview {
    background: #f8f9fa;
    padding: 4rem 0;
}

.faq-preview h3 {
    text-align: center;
    color: #345B6D;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.faq-preview-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.faq-preview-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(52, 91, 109, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(52, 91, 109, 0.15);
}

.faq-preview-item h4 {
    color: #345B6D;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-preview-item p {
    color: #555;
    line-height: 1.7;
}

.faq-preview-item a {
    color: #5A7FA8;
    text-decoration: none;
    font-weight: 600;
}

.faq-preview-item a:hover {
    text-decoration: underline;
}

.faq-preview-cta {
    text-align: center;
    margin-top: 2rem;
}

/* FAQ Preview Mobile */
@media (max-width: 768px) {
    .faq-preview h3 {
        font-size: 1.8rem;
    }
    
    .faq-preview-items {
        grid-template-columns: 1fr;
    }
}

/* Pricing Page Styles */
.pricing-content {
    padding: 3rem 0;
}

.pricing-section {
    margin-bottom: 4rem;
}

.pricing-section h2 {
    color: #345B6D;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-section h2 .material-symbols-outlined {
    font-size: 2.5rem;
    color: #5A7FA8;
}

/* Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 12px rgba(52, 91, 109, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table thead {
    background: linear-gradient(135deg, #345B6D 0%, #5A7FA8 100%);
    color: #fff;
}

.pricing-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.1rem;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table .highlight-row {
    background: #f0f8ff;
}

.pricing-table .highlight-row:hover {
    background: #e6f2ff;
}

/* Info Box */
.info-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #5A7FA8;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.info-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5A7FA8;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Payment Methods Grid */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.payment-item {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(52, 91, 109, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(52, 91, 109, 0.15);
}

.payment-item .material-symbols-outlined {
    font-size: 3rem;
    color: #5A7FA8;
    margin-bottom: 1rem;
}

.payment-item h3 {
    color: #345B6D;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.payment-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.invoice-note {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    border: 2px solid #5A7FA8;
}

.invoice-note .material-symbols-outlined {
    font-size: 2rem;
    color: #5A7FA8;
}

.invoice-note strong {
    color: #345B6D;
    font-size: 1.1rem;
}

/* Content Box */
.content-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(52, 91, 109, 0.1);
}

.content-box p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.content-box ul {
    margin: 1rem 0;
}

.content-box strong {
    color: #345B6D;
    font-size: 1.1rem;
    display: block;
    margin: 1.5rem 0 1rem 0;
}

/* CTA Section on Pricing Page */
.pricing-content .cta-section {
    background: linear-gradient(135deg, #345B6D 0%, #5A7FA8 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 4rem;
}

.pricing-content .cta-section h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-content .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Pricing Page Mobile Responsiveness */
@media (max-width: 768px) {
    .pricing-table th,
    .pricing-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .pricing-section h2 {
        font-size: 1.5rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .invoice-note {
        flex-direction: column;
        text-align: center;
    }

    .pricing-content .cta-section {
        padding: 2rem 1.5rem;
    }

    .pricing-content .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* Social Media Section */
.social-media {
    background: #f8f9fa;
    padding: 4rem 0;
}

.social-media h3 {
    text-align: center;
    color: #345B6D;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.social-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.social-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 32px;
    height: 32px;
}

.social-card.whatsapp .social-icon {
    background: #25D366;
    color: #fff;
}

.social-card.messenger .social-icon {
    background: #0084FF;
    color: #fff;
}

.social-card.tiktok .social-icon {
    background: #000000;
    color: #fff;
}

.social-card.facebook .social-icon {
    background: #1877F2;
    color: #fff;
}

.social-card h4 {
    color: #345B6D;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.social-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Form Enhancements */
.file-upload-wrapper {
    position: relative;
    margin-top: 0.5rem;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed #5A7FA8;
    border-radius: 8px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    border-color: #345B6D;
    background: #e8f0f7;
}

.file-upload-label .material-symbols-outlined {
    font-size: 48px;
    color: #5A7FA8;
    margin-bottom: 0.5rem;
}

.file-upload-label span:last-child {
    color: #555;
    font-size: 0.95rem;
}

.form-hint {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
    font-style: italic;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.radio-label input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #5A7FA8;
    border-radius: 50%;
    margin-right: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #345B6D;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #345B6D;
}

.radio-text {
    color: #333;
    font-size: 1rem;
}

/* Not Yet Available Page */
.not-yet-available {
    padding: 6rem 0;
    text-align: center;
}

.not-yet-content {
    max-width: 600px;
    margin: 0 auto;
}

.not-yet-content h1 {
    color: #345B6D;
    font-size: 2.5rem;
    margin: 1.5rem 0 1rem;
}

.not-yet-content p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.not-yet-content a {
    color: #5A7FA8;
    text-decoration: none;
    font-weight: 600;
}

.not-yet-content a:hover {
    text-decoration: underline;
}

.not-yet-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Updated Footer */
.footer {
    background: linear-gradient(135deg, #345B6D 0%, #5A7FA8 100%);
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

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

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

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

.footer-nav ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav ul li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-contact h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness for New Features */
@media (max-width: 768px) {
    .social-grid {
        grid-template-columns: 1fr;
    }

    .social-media h3 {
        font-size: 1.8rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .not-yet-actions {
        flex-direction: column;
    }

    .not-yet-content h1 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
