/* =========================================
   AZZURE SOLUTIONS - NEW BRAND CSS (SATOSHI)
========================================= */

:root {
    /* Brand Colors */
    --bg-main: #f8f6f2;         /* Main Background */
    --bg-alt: #88e1fa;          /* Alternative Background */
    --bg-card: #ffffff;         /* Card Background */
    
    --text-primary: #18262c;    /* Primary Text */
    --text-secondary: #647488;  /* Secondary Text */
    --text-light: #ffffff;      /* Light Text for Footer/Buttons */
    
    --btn-primary: #0f4c75;     /* Primary Button */
    --btn-primary-hover: #0a3554;
    
    --btn-secondary: #3282bb;   /* Secondary Button */
    --btn-secondary-hover: #226493;

    /* Typography */
    --font-main: 'Satoshi', sans-serif;
    
    --transition: all 0.3s ease;
}

/* --- GLOBAL RESETS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, .logo {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.section-padding {
    padding: 100px 0;
}

/* --- COMPONENTS --- */
.btn {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-main);
    border-radius: 4px; 
    cursor: pointer;
    border: none;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--btn-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--btn-primary-hover);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--btn-primary);
    color: var(--text-light);
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--btn-secondary);
    margin: 20px auto;
    border-radius: 2px;
}

/* --- NAVIGATION --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background-color: var(--bg-card);
    color: var(--text-primary);
    box-shadow: 0 2px 10px rgba(24, 38, 44, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.logo-img {
    height: 50px; /* Adjust this number if you want the logo bigger or smaller */
    width: auto;
    display: block;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: var(--btn-primary);
}

.logo a {
    color: var(--btn-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--btn-secondary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 992px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-card);
        flex-direction: column;
        text-align: center;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }

    .nav-links.active {
        max-height: 400px; 
    }

    .nav-links li {
        padding: 20px 0;
        border-bottom: 1px solid rgba(100, 116, 136, 0.1);
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 90vh;
    background-color: var(--bg-main);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px; 
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SERVICES SECTION --- */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
}

.grid {
    display: grid;
    gap: 30px;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(100, 116, 136, 0.15);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--btn-secondary);
    box-shadow: 0 15px 35px rgba(24, 38, 44, 0.08);
}

.icon {
    font-size: 2.5rem;
    color: var(--btn-primary);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* --- WHY US SECTION --- */
.why-us {
    background-color: var(--bg-alt);
}

.why-us-text h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.why-us-text .divider {
    margin: 20px 0 40px 0;
}

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

.benefit-list li {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.benefit-list i {
    color: var(--btn-primary);
    font-size: 1.4rem;
    margin-right: 15px;
}

/* --- TESTIMONIALS --- */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card {
    text-align: center;
}

.stars {
    color: var(--btn-secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.client-name {
    font-size: 1.1rem;
    font-family: var(--font-main);
    font-weight: 700;
}

.client-biz {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--btn-primary);
}

/* =========================================
   INNER PAGE STYLES (Services Page)
========================================= */

/* Inner Page Header */
.page-header {
    background-color: var(--bg-main);
    color: var(--text-primary);
    padding: 150px 0 80px; 
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Service Sections */
.service-detail {
    padding: 80px 0;
    background-color: var(--bg-main);
}

.service-detail.alt-bg {
    background-color: var(--bg-alt);
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--btn-primary);
    margin-right: 20px;
}

.service-header h2 {
    font-size: 2.5rem;
}

.service-content {
    max-width: 900px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-content .subtitle {
    color: var(--btn-secondary);
    font-size: 1.2rem;
}

.service-benefits {
    margin-top: 40px;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--btn-primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.alt-bg .service-benefits {
    background-color: var(--bg-card);
    border: 1px solid rgba(100, 116, 136, 0.15);
    border-left: 4px solid var(--btn-primary);
}

.service-benefits h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-benefits .benefit-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* =========================================
   PRICING PAGES STYLES
========================================= */

/* Table Wrapper for mobile scrolling */
.table-wrapper {
    overflow-x: auto;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-radius: 8px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    min-width: 800px; 
}

.pricing-table th, 
.pricing-table td {
    padding: 18px 20px;
    border: 1px solid rgba(100, 116, 136, 0.15);
    text-align: center;
}

.pricing-table th {
    background: var(--text-primary);
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 1.2rem;
    font-weight: 500;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 700;
    background: var(--bg-alt);
    color: var(--text-primary);
}

.text-gold { color: var(--btn-primary); } /* Retained class name, mapped to new brand blue */
.text-muted { color: var(--text-secondary); }

/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(100, 116, 136, 0.15);
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlight-card {
    border-color: var(--btn-secondary);
    box-shadow: 0 10px 30px rgba(24, 38, 44, 0.08);
    transform: scale(1.02);
}

.pricing-card:hover {
    border-color: var(--btn-secondary);
    box-shadow: 0 10px 30px rgba(24, 38, 44, 0.05);
}

.pricing-price {
    font-size: 3rem;
    color: var(--btn-primary);
    margin: 15px 0 5px;
    font-family: var(--font-main);
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--btn-secondary);
    margin-right: 15px;
    margin-top: 5px;
}

/* About Us Layout blocks */
.about-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--btn-primary);
}

.about-block p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

/* =========================================
   CONTACT & FORM STYLES
========================================= */
.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(100, 116, 136, 0.15);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(24, 38, 44, 0.03);
}

.form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(100, 116, 136, 0.3);
    background-color: var(--bg-main);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--btn-secondary);
    background-color: var(--bg-card);
    box-shadow: 0 0 0 2px rgba(50, 130, 187, 0.2);
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    font-family: var(--font-main);
}

/* Secondary Form Adjustments */
.secondary-form.alt-bg {
    background-color: var(--bg-alt);
    border-color: var(--btn-secondary);
}

/* =========================================
   FOOTER STYLES
========================================= */
.footer {
    background-color: var(--text-primary);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    text-align: left;
}

.footer-col h3 {
    font-size: 1.2rem;
    color: var(--bg-alt);
    margin-bottom: 20px;
}

.footer-links, .footer-contact {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--bg-alt);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.footer-contact i {
    color: var(--bg-alt);
    margin-right: 15px;
    margin-top: 5px;
}

.brand-col p {
    color: #cbd5e1;
    margin-top: 15px;
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* --- RESPONSIVE DESIGN FOR SMALLER SCREENS --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .section-title h2, .why-us-text h2 { font-size: 2.2rem; }
    
    .page-header h1 { font-size: 2.5rem; }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-icon { margin-bottom: 15px; }
    .service-header h2 { font-size: 2rem; }
    
    .contact-container { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .footer-grid { grid-template-columns: 1fr; }
}