/**
 * Amy Angel Services - Main Stylesheet
 * Professional NDIS Provider Website
 * Theme: Soft Blue & Green Healthcare
 */

/* ========================================================================
   ROOT & VARIABLES
   ======================================================================== */

:root {
    /* --primary-orange: #FF8C00; */
    /* --primary-orange: #FF841A; */
    --primary-orange: #f36115;
    --primary-orange-dark: #E87300;
    --secondary-green: #198754;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark-text: #212529;
    --muted-text: #6c757d;
    --border-radius: 1rem;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ========================================================================
   GLOBAL STYLES
   ======================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

h2 {
    font-size: 2.75rem !important;
}

a:hover {
    --bs-link-color-rgb: unset;
}

.display-4 {
    letter-spacing: -1px;
}

.lead {
    font-size: 1.2rem;
    font-weight: 400;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn {
    font-weight: 500;
    padding: 0.55rem 1.5rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-orange-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-outline-primary:hover {
    background-color: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background-color: white;
    color: var(--dark-text);
    font-weight: 600;
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* ========================================================================
   HEADER & NAVIGATION
   ======================================================================== */

header {
    background-color: white;
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-orange) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--primary-orange-dark) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--muted-text) !important;
    transition: var(--transition);
    position: relative;
    margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */

.hero-section {
    /* background: linear-gradient(135deg, #fff4e6 0%, #ffe6cc 100%); */
    background: antiquewhite;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* ========================================================================
   GRADIENT & BACKGROUNDS
   ======================================================================== */

.bg-gradient {
    background-color: #f8f9fa;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%) !important;
}

.text-primary {
    color: var(--primary-orange) !important;
}

.text-success {
    color: var(--secondary-green) !important;
}

/* ========================================================================
   CARDS
   ======================================================================== */

.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Service Cards */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-card>i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.service-card h5 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-card .btn-sm {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
}

/* Service Detail Cards */
.service-detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-md);
}

.service-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

/* ========================================================================
   FEATURES & BENEFITS
   ======================================================================== */

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff4e6, #ffe6cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-orange);
}

.feature-icon i {
    display: block;
}

/* ========================================================================
   CONTACT INFORMATION
   ======================================================================== */

.contact-info {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-info:hover {
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

/* ========================================================================
   FORMS
   ======================================================================== */

.form-control,
.form-select {
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.1);
    outline: none;
}

.form-label {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-check-label {
    color: var(--muted-text);
    font-size: 0.95rem;
}

.form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.2em;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.form-check-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.1);
}

/* ========================================================================
   ALERTS
   ======================================================================== */

.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1.2rem;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 5px solid var(--secondary-green);
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border-left: 5px solid #dc3545;
}

.alert-warning {
    background-color: #fff3cd;
    color: #664d03;
    border-left: 5px solid #ffc107;
}

.alert-info {
    background-color: #ffe6cc;
    color: #8B5A00;
    border-left: 5px solid var(--primary-orange);
}

.alert-dismissible .btn-close {
    padding: 0.5rem;
}

/* ========================================================================
   FOOTER
   ======================================================================== */

footer {
    background-color: #212529;
    color: white;
    border-top: 4px solid var(--primary-orange);
}

footer h5 {
    color: white;
    font-weight: 600;
}

footer li a {
    transition: var(--transition);
}

footer li a:hover {
    color: var(--primary-orange) !important;
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

footer p {
    margin-bottom: 0.5rem;
}

/* ========================================================================
   SECTIONS & SPACING
   ======================================================================== */

section {
    position: relative;
}

section.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

/* ========================================================================
   UTILITIES
   ======================================================================== */

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.text-muted {
    color: var(--muted-text) !important;
}

hr {
    border: none;
    border-top: 1px solid #dee2e6;
}

/* List Styles */
.list-unstyled li {
    margin-bottom: 0.5rem;
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

/* Tablets */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 0.5rem 0;
    }
    
    .nav-contact-section {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
        border-top: 1px solid #dee2e6;
        padding-top: 1rem;
    }
    
    .hero-image {
        text-align: center;
        margin-top: 2rem;
    }
    
    .hero-image-placeholder {
        height: 300px;
    }
    
    .service-detail-card {
        padding: 1.5rem;
    }
    
    .feature-box {
        padding: 1.5rem;
    }
    
    .service-horizontal-card {
        flex-direction: column !important;
    }
    
    .service-horizontal-card.reverse {
        flex-direction: column !important;
    }
    
    .service-card-image {
        flex: 0 0 auto;
        min-height: 250px;
    }
    
    .service-card-content {
        flex: 0 0 auto;
        padding: 1.5rem;
    }
    
    .map-container {
        height: 350px;
    }
    
    section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.5rem;
    }
    
    .hero-section::before {
        width: 400px;
        height: 400px;
        top: -40%;
        right: -20%;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-detail-card {
        border-left-width: 3px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
    
    h1 {
        margin-bottom: 1rem;
    }
    
    .text-lg-end {
        text-align: left !important;
    }
    
    .contact-info {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .nav-contact-section {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
        border-top: 1px solid #dee2e6;
        padding-top: 1rem;
    }
    
    .hero-image-placeholder {
        height: 250px;
    }
    
    .service-horizontal-card {
        flex-direction: column !important;
        margin-bottom: 1.5rem;
    }
    
    .service-card-image {
        min-height: 200px;
        flex: 0 0 auto;
    }
    
    .service-card-content {
        padding: 1.5rem;
        flex: 0 0 auto;
    }
    
    .service-card-content h3 {
        font-size: 1.4rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .connect-buttons {
        justify-content: center;
    }
    
    .map-container {
        height: 300px;
    }
}

/* ========================================================================
   PRINT STYLES
   ======================================================================== */

@media print {
    header,
    footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* ========================================================================
   ANIMATIONS
   ======================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card,
.service-card,
.feature-box {
    animation: fadeIn 0.5s ease-out;
}

/* ========================================================================
   ENHANCED HERO SECTION
   ======================================================================== */

.hero-content {
    text-align: left;
}

.hero-image {
    text-align: right;
}

.hero-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #fff4e6, #ffe6cc);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-text);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================================================
   HORIZONTAL SERVICE CARDS
   ======================================================================== */

.service-horizontal-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    margin-bottom: 4rem;
    display: flex;
}

.service-horizontal-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-horizontal-card.reverse {
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #fff4e6, #ffe6cc);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    color: var(--dark-text);
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-content {
    flex: 0 0 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-card-content p {
    color: var(--muted-text);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-card-content .btn {
    align-self: flex-start;
}

.service-card-list {
    list-style: none;
    padding-left: 0;
}

.service-card-list li {
    margin-bottom: 0.8rem;
    color: var(--muted-text);
    display: flex;
    align-items: center;
}

.service-card-list i {
    color: var(--secondary-green);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

/* ========================================================================
   NAVIGATION ENHANCEMENTS
   ======================================================================== */

.nav-contact-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid #dee2e6;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-text) !important;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--primary-orange) !important;
    transform: scale(1.05);
}

.nav-phone i {
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    flex-wrap: wrap;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-orange);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1rem;
}

.social-icon:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================================================
   FOOTER ENHANCEMENTS
   ======================================================================== */

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icon {
    width: fit-content;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 140, 0, 0.2);
    color: var(--primary-orange);
    border-radius: 5px;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.2rem;
    padding: 12px;
}

.footer-social-icon:hover {
    background-color: var(--primary-orange);    
    color: white;    
    transform: translateY(-2px);
}

.footer-connect-section {    
    margin-top: 1.5rem;    
    padding-top: 1.5rem;    
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.connect-buttons {    
    display: flex;    
    gap: 0.8rem;    
    flex-wrap: wrap;    
    margin-top: 1rem;
}

.connect-buttons .footer-social-icon {
    font-size: 1rem;
    height: 35px;
    line-height: 1;
}

.connect-btn {    
    display: inline-flex;    
    align-items: center;    
    gap: 0.5rem;    
    padding: 0.6rem 1.2rem;    
    background-color: var(--primary-orange);    
    color: white;    
    border-radius: 2rem;    
    text-decoration: none;    
    font-size: 0.9rem;    
    transition: var(--transition);    
    border: none;    
    cursor: pointer;
}

.connect-btn:hover {    
    background-color: var(--primary-orange-dark);    
    transform: translateY(-2px);
}


/* ========================================================================   
GOOGLE MAP STYLES   
======================================================================== */
.map-container {    
    width: 100%;    
    height: 450px;    
    margin-top: 2rem;    
    border-radius: var(--border-radius);    
    overflow: hidden;    
    box-shadow: var(--shadow-md);
}

.map-container iframe {    
    width: 100%;    
    height: 100%;    
    border: none;
}


/* ========================================================================   
ACCESSIBILITY   
======================================================================== 
*//* Focus Visible States */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


