/* =================================
   Color Palette & Root Variables
   ================================= */
:root {
    --primary-color: #4a90a4;        /* Calming teal-blue */
    --secondary-color: #7fb069;      /* Natural green */
    --accent-color: #e76f51;         /* Warm coral */
    --neutral-light: #f4f1de;        /* Paw beige */
    --neutral-dark: #2d3748;         /* Deep gray */
    --text-color: #333333;
    --text-muted: #6c757d;
    --border-color: #e2e8f0;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    
    --transition: all 0.3s ease;
}

/* =================================
   Global Styles
   ================================= */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    padding-top: 76px; /* Offset for fixed header */
}

a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* =================================
   Header & Navigation
   ================================= */
header {
    background: white;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.3rem;
    color: var(--primary-color) !important;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
}

/* =================================
   Hero Section
   ================================= */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f4f1de 0%, #e8f4f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74,144,164,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(127,176,105,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.icon-badge {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.icon-badge i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* =================================
   Buttons
   ================================= */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =================================
   Cards & Boxes
   ================================= */
.welcome-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.welcome-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.info-box {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--secondary-color);
}

.partner-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px dashed var(--primary-color);
    transition: var(--transition);
}

.partner-box:hover {
    border-style: solid;
    box-shadow: var(--shadow-lg);
}

/* =================================
   Alerts
   ================================= */
.alert-info {
    background-color: #e8f4f8;
    color: var(--text-color);
    border-radius: 12px;
}

/* =================================
   Footer
   ================================= */
footer {
    background: var(--neutral-dark);
}

footer h5 {
    color: var(--neutral-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    opacity: 0.8;
    transform: translateX(4px);
}

/* =================================
   Responsive Design
   ================================= */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .icon-badge {
        width: 80px;
        height: 80px;
    }
    
    .icon-badge i {
        font-size: 2.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
}

/* =================================
   Utility Classes
   ================================= */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}


/* =================================
   Page Header
   ================================= */
.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #e8f4f8 0%, #f4f1de 100%);
    position: relative;
}

.icon-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.icon-group i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
}

.icon-group i:nth-child(2) {
    animation-delay: 0.5s;
    color: var(--secondary-color);
}

.icon-group i:nth-child(3) {
    animation-delay: 1s;
    color: var(--accent-color);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* =================================
   Therapy Cards
   ================================= */
.therapy-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.therapy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.therapy-card:hover::before {
    transform: scaleX(1);
}

.therapy-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.therapy-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.therapy-icon i {
    font-size: 1.8rem;
    color: white;
}

.therapy-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.therapy-icon-small i {
    font-size: 1.5rem;
    color: white;
}

.therapy-icon-inline {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.therapy-icon-inline i {
    font-size: 2.5rem;
    color: white;
}

.therapy-card h3 a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.therapy-card h3 a:hover {
    color: var(--primary-color);
}

.price-tag {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: var(--neutral-light);
    border-radius: 8px;
    font-size: 0.95rem;
}

.special-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* =================================
   Event Cards
   ================================= */
.event-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: var(--neutral-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.event-badge i {
    color: #ff6b35;
}

.rainbow-card {
    border-left-color: var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f2 100%);
}

.rainbow-icon {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4, #45b7d1);
}

.event-card h3 a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.event-card h3 a:hover {
    color: var(--primary-color);
}

.event-card ul li {
    padding: 0.5rem 0;
}

/* =================================
   Policy Cards
   ================================= */
.policy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.policy-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.registration-card {
    border-color: var(--secondary-color);
}

.registration-card:hover {
    border-color: var(--secondary-color);
}

/* =================================
   Decorative Paw Section
   ================================= */
.paw-decorative {
    background: var(--neutral-light);
}

.paw-decorative i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* =================================
   Responsive Adjustments
   ================================= */
@media (max-width: 768px) {
    .icon-group {
        gap: 1rem;
    }
    
    .icon-group i {
        font-size: 2rem;
    }
    
    .therapy-icon-inline {
        width: 70px;
        height: 70px;
    }
    
    .therapy-icon-inline i {
        font-size: 2rem;
    }
}



/* =================================
   Featured Visual (Image Replacement)
   ================================= */
.featured-visual {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.visual-icon-block {
    padding: 3rem 2rem;
    text-align: center;
    border-right: 2px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.visual-icon-block:last-child {
    border-right: none;
}

.visual-icon-block:hover {
    background: white;
}

.visual-icon-block i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.visual-icon-block p {
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

/* =================================
   Class Cards
   ================================= */
.class-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.class-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.featured-class {
    border-left: 6px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.farm-class {
    border-left: 6px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.intro-class {
    border-left: 6px solid var(--accent-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

.class-card h3 a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

.class-card h3 a:hover {
    color: var(--primary-color);
}

/* Class Icons */
.class-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.class-icon-large i {
    font-size: 3.5rem;
    color: white;
}

.class-icon-medium {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.class-icon-medium i {
    font-size: 2.5rem;
    color: white;
}

.class-icon-small {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.class-icon-small i {
    font-size: 2rem;
    color: white;
}

/* =================================
   Date Badges
   ================================= */
.date-badge {
    background: var(--neutral-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.date-badge:hover {
    background: white;
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.farm-badge {
    border-left-color: var(--secondary-color);
    background: #f0fdf4;
}

.date-badge-sm {
    background: var(--neutral-light);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

/* =================================
   Schedule & Curriculum Sections
   ================================= */
.schedule-section {
    background: rgba(74,144,164,0.05);
    padding: 1.5rem;
    border-radius: 12px;
}

.class-description {
    padding: 1.5rem;
    background: rgba(127,176,105,0.05);
    border-radius: 12px;
    margin-top: 1rem;
}

.curriculum-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.curriculum-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* =================================
   Registration Box
   ================================= */
.registration-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f4f1de 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

/* =================================
   Puppy Visual Section
   ================================= */
.puppy-visual {
    background: linear-gradient(135deg, #f4f1de 0%, #e8f4f8 100%);
}

.visual-paw-container {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.visual-paw-container i {
    font-size: 4rem;
    animation: bounce 2s ease-in-out infinite;
}

.visual-paw-container i:nth-child(1) {
    color: var(--primary-color);
    animation-delay: 0s;
}

.visual-paw-container i:nth-child(2) {
    color: var(--accent-color);
    animation-delay: 0.3s;
    font-size: 3rem;
}

.visual-paw-container i:nth-child(3) {
    color: var(--secondary-color);
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* =================================
   Responsive Design for Classes
   ================================= */
@media (max-width: 768px) {
    .visual-icon-block {
        border-right: none;
        border-bottom: 2px solid rgba(0,0,0,0.05);
        padding: 2rem 1rem;
    }
    
    .visual-icon-block:last-child {
        border-bottom: none;
    }
    
    .visual-icon-block i {
        font-size: 2.5rem;
    }
    
    .class-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .class-icon-large i {
        font-size: 2.5rem;
    }
    
    .visual-paw-container {
        gap: 1.5rem;
    }
    
    .visual-paw-container i {
        font-size: 2.5rem;
    }
    
    .visual-paw-container i:nth-child(2) {
        font-size: 2rem;
    }
}



/* =================================
   About Page Styles
   ================================= */

/* About Visual (replacing photo) */
.about-visual {
    background: linear-gradient(135deg, #e8f4f8 0%, #f4f1de 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.about-icon-container {
    position: relative;
    text-align: center;
}

.about-icon-container > i {
    font-size: 8rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
    animation: gentle-float 3s ease-in-out infinite;
}

.icon-dogs {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.icon-dogs i {
    font-size: 3rem;
    color: var(--secondary-color);
    animation: wag 2s ease-in-out infinite;
}

.icon-dogs i:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wag {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* About Content */
.about-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Profile Card */
.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.profile-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.profile-icon i {
    font-size: 5rem;
    color: white;
}

/* Bio Content */
.bio-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.credentials-box {
    background: var(--neutral-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.credentials-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.credentials-list i {
    color: var(--secondary-color);
}

/* Mission & History Cards */
.mission-card,
.history-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.history-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mission-card:hover,
.history-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon,
.history-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i,
.history-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1;
    margin: 0 2rem;
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

/* Involvement Cards */
.involvement-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.involvement-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.involvement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.involvement-icon i {
    font-size: 2rem;
    color: white;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 40px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row !important;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        margin-left: 10px;
    }
    
    .timeline-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        margin-left: 2rem;
        margin-right: 0;
    }
    
    .about-icon-container > i {
        font-size: 5rem;
    }
    
    .icon-dogs i {
        font-size: 2rem;
    }
    
    .profile-icon {
        width: 120px;
        height: 120px;
    }
    
    .profile-icon i {
        font-size: 3.5rem;
    }
}




/* =================================
   Contact Page Styles
   ================================= */

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid var(--primary-color);
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(74, 144, 164, 0.25);
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-info-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact-info-card p,
.contact-info-card a {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

/* Map Section */
.map-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
}

.map-wrapper iframe {
    border-radius: 16px;
}

.map-info-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* Direction Cards */
.direction-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.direction-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .cta-box {
        padding: 1.5rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .map-info-overlay {
        position: static;
        margin-top: 1rem;
    }
    
    .contact-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-card:hover {
        transform: translateY(-4px);
    }
}

/* Form Validation Styles */
.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--secondary-color);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}




