/* ==========================================================================
   CSS Variables & Base Reset
   ========================================================================== */
:root {
    --primary-color: #02828e; /* Teal */
    --primary-light: #e0f2f3;
    --primary-dark: #015c65;
    --secondary-color: #1e293b; /* Slate dark */
    --text-main: #334155;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-primary: 0 10px 15px -3px rgba(2, 130, 142, 0.3);
    
    --font-main: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-norm: 0.3s ease;
    
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

ul {
    list-style: none;
}

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

.bg-light {
    background-color: var(--bg-main);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.2;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-norm);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(2, 130, 142, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow var(--transition-norm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* ==========================================================================
/* ==========================================================================
   Premium Hero Section
   ========================================================================== */
.premium-hero {
    padding-top: 100px;
    background-color: var(--secondary-color);
    position: relative;
    color: var(--bg-white);
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2, 130, 142, 0.4) 0%, rgba(30, 41, 59, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: calc(100vh - 80px);
    padding-bottom: 120px; /* Space for floating stats */
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.gradient-text {
    background: linear-gradient(90deg, #02828e, #00d2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vision-text {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 550px;
}

.vision-text strong {
    color: var(--primary-light);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(2, 130, 142, 0.5);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    background: transparent;
}

.btn-outline-light:hover {
    border-color: var(--bg-white);
    background: rgba(255, 255, 255, 0.1);
}

.hero-highlights {
    display: flex;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #cbd5e1;
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.image-arch-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.arch-shape {
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(2, 130, 142, 0.1) 100%);
    border-radius: 200px 200px 20px 20px;
    padding: 10px 10px 0 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.arch-shape img {
    border-radius: 200px 200px 20px 20px;
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 50px;
    left: -40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px 20px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.badge-content strong {
    display: block;
    color: var(--bg-white);
    font-size: 1.1rem;
    line-height: 1.2;
}

.badge-content span {
    color: #cbd5e1;
    font-size: 0.85rem;
}

.decor-dots {
    position: absolute;
    top: 50px;
    right: -20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    z-index: 1;
    opacity: 0.5;
}

/* Stats Section Floating */
.floating-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: translateY(50%);
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 50px;
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-top: 5px;
    line-height: 1;
}

/* ==========================================================================
   Section Defaults
   ========================================================================== */
section {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 40px;
}

.section-title.center {
    text-align: center;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title .subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .subtitle i {
    font-size: 0.7rem;
    margin: 0 5px;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
    background-color: var(--bg-white);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
}

.about-image {
    background-color: var(--primary-light);
    border-radius: var(--border-radius-lg);
    padding: 20px;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-lg);
    z-index: 0;
    opacity: 0.1;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-md);
}

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.designation {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.mission-box {
    background-color: var(--primary-light);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 25px 0;
}

.mission-box p {
    margin: 0;
    color: var(--secondary-color);
}

.core-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.core-values li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--secondary-color);
}

.core-values li i {
    color: var(--primary-color);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
    background-color: var(--bg-main);
}

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

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-norm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-norm);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all var(--transition-norm);
}

.service-card:hover .icon-wrapper {
    background-color: var(--primary-color);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: color var(--transition-norm);
}

.service-card:hover .icon-wrapper i {
    color: var(--bg-white);
}

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

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.learn-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Experience Section
   ========================================================================== */
.experience-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.timeline {
    flex: 1;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 7px;
    height: 100%;
    width: 2px;
    background-color: var(--primary-light);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary-light);
    transition: all var(--transition-norm);
}

.timeline-item.highlight .timeline-dot {
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(30, 41, 59, 0.2);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
}

.timeline-content {
    background-color: var(--bg-white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-norm), box-shadow var(--transition-norm);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.timeline-item.highlight .timeline-content {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
}

.timeline-item.highlight .timeline-content h3 {
    color: var(--bg-white);
}

.timeline-item.highlight .timeline-content p {
    color: #cbd5e1;
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.timeline-content .location {
    font-weight: 500;
    color: var(--primary-color);
}

.timeline-content .location i {
    margin-right: 5px;
}

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

.img-frame {
    position: relative;
    max-width: 450px;
}

.img-frame img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 5px solid var(--bg-white);
}

.experience-badge h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin: 0;
    line-height: 1;
}

.experience-badge p {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   Appointment Section
   ========================================================================== */
.appointment {
    background-color: var(--bg-white);
}

.appointment-container {
    display: flex;
    gap: 50px;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-info {
    flex: 1;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 50px;
}

.contact-info h3 {
    color: var(--bg-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-desc {
    color: #94a3b8;
    margin-bottom: 40px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.info-text h4 {
    color: var(--bg-white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-text p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.95rem;
}

.info-text a {
    color: #cbd5e1;
}

.info-text a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-links .follow-text {
    font-weight: 600;
    color: var(--bg-white);
    margin-right: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.appointment-form-wrapper {
    flex: 1.2;
    padding: 50px;
    background-color: var(--bg-white);
}

.appointment-form h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

input, select, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-main);
    background-color: var(--bg-main);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
    background-color: var(--bg-white);
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-muted);
}

select {
    appearance: none;
}

textarea {
    resize: vertical;
    margin-bottom: 20px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--secondary-color);
    color: #cbd5e1;
    padding-top: 80px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-col {
    flex: 2;
    min-width: 300px;
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.brand-col p {
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social a {
    background-color: rgba(255,255,255,0.05);
}

.footer-col h4 {
    color: var(--bg-white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.links-col ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.links-col ul li a i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.links-col ul li a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.contact-list li i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    background-color: #0f172a;
    padding: 25px 0;
}

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

.bottom-container p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--primary-light);
}

/* ==========================================================================
   Blog Section
   ========================================================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-norm);
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.blog-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-norm);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content h3 a {
    transition: color var(--transition-fast);
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==========================================================================
   Blog Inner Page
   ========================================================================== */
.blog-details {
    background-color: var(--bg-white);
    padding-bottom: 80px;
}

.blog-details-container {
    max-width: 900px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header .subtitle {
    display: inline-block;
    margin-bottom: 20px;
}

.blog-header .subtitle a {
    color: var(--primary-color);
}

.blog-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.blog-header .blog-meta {
    justify-content: center;
    font-size: 0.95rem;
}

.featured-image {
    width: 100%;
    max-height: 500px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

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

.blog-body {
    font-size: 1.1rem;
    color: var(--text-main);
}

.blog-body .lead {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.blog-body h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body blockquote {
    background-color: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    padding: 30px;
    margin: 40px 0;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-dark);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-cta {
    margin-top: 60px;
    padding: 40px;
    background-color: var(--bg-main);
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
}

.blog-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.blog-cta p {
    margin-bottom: 25px;
}

/* ==========================================================================
   Floating Action Buttons & Social Media
   ========================================================================== */
.floating-social {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.floating-social a {
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition-norm);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.floating-social a:last-child {
    border-bottom: none;
    border-radius: 0 0 8px 0;
}

.floating-social a:first-child {
    border-radius: 0 8px 0 0;
}

.floating-social a:hover {
    background-color: var(--primary-dark);
    width: 55px;
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all var(--transition-norm);
    position: relative;
    text-decoration: none;
}

.float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

.float-btn.whatsapp {
    background-color: #25D366;
}

.float-btn.whatsapp:hover {
    background-color: #1ebe57;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.float-btn.call {
    background-color: var(--primary-color);
}

.float-btn.call:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(2, 130, 142, 0.4);
}

.float-btn::before {
    content: attr(aria-label);
    position: absolute;
    right: 75px;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    font-family: var(--font-main);
}

.float-btn:hover::before {
    opacity: 1;
    right: 70px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .premium-hero {
        padding-top: 80px;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }

    .image-arch-wrapper {
        margin-top: 30px;
    }

    .floating-badge {
        left: -20px;
    }
    
    .about-container, .experience-container {
        flex-direction: column;
    }
    
    .about-image-wrapper {
        margin-bottom: 30px;
    }
    
    .experience-image {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 900px) {
    .appointment-container {
        flex-direction: column;
    }
    
    .contact-info, .appointment-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    .floating-social {
        display: none;
    }
    
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .floating-stats {
        position: relative;
        transform: none;
        padding: 0 20px;
        margin-top: -30px;
        margin-bottom: 40px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 20px 0;
        padding: 25px 15px;
    }
    
    .stat-item {
        flex: 1 1 45%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }
    
    .stat-item:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .core-values {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .bottom-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .vision-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .floating-badge {
        left: -10px;
        bottom: 20px;
        transform: scale(0.8);
        transform-origin: bottom left;
    }

    .stat-item {
        flex: 1 1 100%;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }

    .stat-item:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 15px;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stat-item h2 {
        font-size: 2.2rem;
    }
    
    .about-image::before {
        width: 60px;
        height: 60px;
    }
    
    .experience-badge {
        right: -10px;
        bottom: -20px;
        padding: 15px;
    }
    
    .experience-badge h2 {
        font-size: 2rem;
    }
}
