/* ==================== Variables ==================== */
:root {
    --primary-color: #00a89d;
    --primary-dark: #008f86;
    --primary-light: #e6f7f6;
    --secondary-color: #004d47;
    --accent-color: #ffd700;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #e9ecef;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 10px;
    --border-radius-lg: 20px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* ==================== Top Bar ==================== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-info span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
}

.top-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.top-bar .social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 14px;
}

.top-bar .social-links a:hover {
    color: var(--primary-color);
}

/* ==================== Navigation ==================== */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
}

.logo-text .brand-name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1.2;
}

.logo-text .brand-tagline {
    display: block;
    font-size: 11px;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.btn-appointment {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
}

.btn-appointment:hover {
    background: var(--primary-dark) !important;
}

/* ==================== Buttons ==================== */
.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

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

.btn-light-custom {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-light-custom:hover {
    background: var(--gray-light);
    color: var(--primary-dark);
}

.btn-outline-light-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    margin-left: 10px;
    transition: var(--transition);
}

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

/* ==================== Hero Section ==================== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, #d4f5f3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(0, 168, 157, 0.1);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
    display: block;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.feature-item i {
    color: var(--primary-color);
}

.hero-image {
    position: relative;
    z-index: 2;
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--secondary-color);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--shadow);
}

.discount-badge .percent {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.discount-badge .off {
    font-size: 16px;
    font-weight: 600;
}

.image-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.main-frame {
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 25%);
}

.main-frame img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.secondary-frame {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    border: 5px solid var(--white);
    border-radius: 50%;
    overflow: hidden;
}

.secondary-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* ==================== Section Styles ==================== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Services Section ==================== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 28px;
    color: var(--white);
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ==================== Why Choose Section ==================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.choose-images {
    position: relative;
    padding: 30px;
}

.choose-img-1 img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.choose-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    border: 5px solid var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.choose-img-2 img {
    width: 100%;
}

.experience-badge {
    position: absolute;
    top: 50px;
    left: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    display: block;
}

.choose-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.choose-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.choose-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.choose-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.choose-text h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.choose-text p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ==================== Stats Section ==================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stat-card {
    text-align: center;
    color: var(--white);
    padding: 30px 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 28px;
    color: var(--white);
}

.stat-card h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 60px 0;
    background: var(--accent-color);
}

.cta-content {
    padding: 20px 0;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.cta-content p {
    color: var(--text-dark);
    margin: 0;
}

/* ==================== Contact Info Section ==================== */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--gray-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    background: var(--primary-light);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-card h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* ==================== Page Header ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    justify-content: center;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: var(--white);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ==================== Services Detail Section ==================== */
.services-detail-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.service-detail-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.service-content {
    padding: 25px;
}

.service-icon-sm {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon-sm i {
    font-size: 22px;
    color: var(--primary-color);
}

.service-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-content ul li {
    padding: 5px 0;
    color: var(--text-light);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.doctor-consultation-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.consultation-content {
    padding: 20px 0;
}

.consultation-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.consultation-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.consultation-features li {
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
}

.consultation-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* ==================== About Section ==================== */
.about-section {
    padding: 80px 0;
    background: var(--white);
}

.about-images {
    position: relative;
    padding: 30px;
}

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

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    border: 5px solid var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.about-features {
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
}

.about-feature i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ==================== Mission Vision Section ==================== */
.mission-vision-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.mv-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mv-icon i {
    font-size: 32px;
    color: var(--white);
}

.mv-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.mv-card p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* ==================== Team Section ==================== */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-img {
    height: 280px;
    overflow: hidden;
}

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

.team-card:hover .team-img img {
    transform: scale(1.1);
}

.team-content {
    padding: 25px;
}

.team-content h5 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-content .designation {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.team-content .specialization {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.team-social a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: var(--gray-light);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* ==================== Contact Section ==================== */
.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-info-card {
    background: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.contact-info-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info-card > p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .icon i {
    font-size: 20px;
}

.contact-info-item .content h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-item .content p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.contact-info-card .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.contact-info-card .social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
}

.contact-form-card {
    background: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 40px;
    height: 100%;
}

.contact-form-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.form-control,
.form-select {
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 157, 0.1);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 14px;
}

/* ==================== Map Section ==================== */
.map-section iframe {
    display: block;
}

/* ==================== Appointment Section ==================== */
.appointment-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.appointment-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.appointment-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.appointment-benefits {
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.benefit-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.emergency-contact {
    background: var(--primary-light);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.emergency-contact h5 {
    color: var(--secondary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.emergency-contact h5 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.emergency-contact .phone-number {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.appointment-form-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.appointment-form-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

/* ==================== Quick Services Section ==================== */
.services-quick-section {
    padding: 60px 0;
    background: var(--white);
}

.quick-service-card {
    background: var(--gray-light);
    border-radius: var(--border-radius);
    padding: 25px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.quick-service-card:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
}

.quick-service-card i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.quick-service-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-widget h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-widget p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
}

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

.footer-contact li span {
    opacity: 0.8;
}

.footer .social-links a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 8px;
    transition: var(--transition);
}

.footer .social-links a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* ==================== Responsive ==================== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .top-bar {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .discount-badge {
        width: 70px;
        height: 70px;
    }
    
    .discount-badge .percent {
        font-size: 22px;
    }
    
    .secondary-frame {
        width: 150px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .stat-card h3 {
        font-size: 32px;
    }
    
    .btn-outline-light-custom {
        margin-left: 0;
        margin-top: 10px;
    }
}
