/* Variables & Reset */
:root {
    --primary-black: #050505;
    --primary-gold: #B38E3F;
    --secondary-gold: #B98C3E;
    --text-color: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 70px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(179, 142, 63, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-black) !important;
    transform: translateY(-3px);
}

.btn-white {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Sticky icons  */
.sticky-icons {
    position: fixed;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    z-index: 10000;
    width: 165px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.sticky-icons a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transform: translate(120px, 0px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    backdrop-filter: blur(5px);
    overflow: hidden;
    padding: 7px 0px 7px 10px;
}

.sticky-icons .gmb {
    background: linear-gradient(135deg, #b38e3f, #8f6f2c);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.sticky-icons .gmb img {
    width: 30px;
    height: 30px;
}

.sticky-icons .whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.sticky-icons .phone {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.95), rgba(41, 128, 185, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
}

.sticky-icons .phone:hover {
    transform: translate(0px, 0px);
}

.sticky-icons .whatsapp:hover {
    transform: translate(0px, 0px);
}

.sticky-icons .gmb:hover {
    transform: translate(0px, 0px);
}

.sticky-icons a i::before {
    font-size: 1.5rem;
}

.sticky-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.sticky-icons a:hover::before {
    left: 100%;
}

/* Scroll to Top Button - Progress Circle Design */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(5, 5, 5, 0.9);
    color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.scroll-top-btn svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.scroll-top-btn circle {
    fill: none;
    stroke: var(--primary-gold);
    stroke-width: 3;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 0.1s linear;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    cursor: pointer;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(179, 142, 63, 0.4);
    background: var(--primary-black);
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 10002;
    border-bottom: 1px solid rgba(179, 142, 63, 0.2);
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-link {
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.top-link i {
    color: var(--primary-gold);
}

.top-link:hover {
    color: var(--primary-gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-social-icons {
    display: flex;
    gap: 15px;
}

.top-bar-social-icons a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.top-bar-social-icons a:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 55px;
    width: 100%;
    height: 80px;
    z-index: 10001;
    display: flex;
    align-items: center;
    transition: none;
}

/* Sticky Header Animation */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    animation: slideDown 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    z-index: 10003;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: block;
    width: 8rem;
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-black);
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-black);
    transition: var(--transition);
}

/* Home Page */
/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.5)), url('../images/hero-home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.4), rgba(179, 142, 63, 0.15));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 900px;
}

.hero h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #f5f5f5;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.divider.tech {
    margin: 0 0 25px 0;
    width: 60px;
}

.divider.profile {
    margin: 0 0 25px 0;
}

.divider .experience {
    margin: 0 0 30px 0;
}

.section-header p {
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Page Header */
.page-header {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
    background-image: linear-gradient(rgba(5, 5, 5, 0.8), rgba(5, 5, 5, 0.8)), url('../images/hero-service.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* About Section */
.about {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--light-text);
    font-size: 1.05rem;
}

.benefits-list {
    margin-bottom: 35px;
}

.benefits-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--primary-black);
}

.benefits-list i {
    color: var(--primary-gold);
    background-color: rgba(179, 142, 63, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.about-img-fluid {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.image-placeholder {
    height: 400px;
    border-radius: 50%;
    width: 400px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-us {
    background-color: var(--white);
}

.services {
    background-color: var(--light-bg);
}

.view-all-btn {
    text-align: center;
    margin-top: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    transition: var(--transition);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-us .service-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 249, 249, 1) 100%);
    text-align: center;
    border: none;
    box-shadow: none;
}

.why-us .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 142, 63, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-us .service-card:hover::before {
    opacity: 1;
}

.why-us .service-card:hover {
    border-color: rgba(179, 142, 63, 0.2);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: rgba(179, 142, 63, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    color: var(--primary-gold);
    font-size: 2rem;
    transition: var(--transition);
}

.why-us .icon-box {
    background-color: rgba(5, 5, 5, 0.05) !important;
    color: var(--primary-black) !important;
}

.service-card:hover .icon-box {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 25px;
}

.service-link {
    color: var(--primary-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.service-link i {
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Testimonial Section */
.testimonial {
    background-color: var(--primary-black);
    color: var(--white);
}

.testimonial h2 {
    color: var(--white);
}

.text-muted-light {
    color: #ccc;
}

.testimonial .service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial .quote-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial .feedback {
    color: #ddd;
    font-style: italic;
}

.testimonial .name {
    color: var(--white);
    margin-top: 20px;
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 70px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.comparison-card {
    padding: 50px 40px;
    border-radius: 25px;
    background-color: var(--white);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    transition: var(--transition);
}

.comparison-card.traditional::before {
    background: linear-gradient(90deg, #ff4d4d, #ff6b6b);
}

.comparison-card.endoscopic::before {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.comparison-card.endoscopic {
    border-color: rgba(46, 204, 113, 0.2);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.comparison-card h3 {
    margin-bottom: 30px;
    font-size: 1.9rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.comparison-card .fa-xmark {
    color: #ff4d4d;
}

.comparison-card .fa-check {
    color: #2ecc71;
}

.comparison-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    padding: 10px;
    border-radius: 10px;
    transition: var(--transition);
}

.comparison-list li:hover {
    background-color: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.comparison-list.bad li i {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.comparison-list.good li i {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.1);
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Technology Section */
.tech-section {
    background-color: var(--primary-black);
    color: var(--white);
    overflow: hidden;
    padding: 100px 0;
    position: relative;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(179, 142, 63, 0.05));
    pointer-events: none;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tech-text h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 25px;
}

.tech-text p {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.tech-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.tech-image img {
    width: 100%;
    height: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.tech-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.7), rgba(179, 142, 63, 0.6));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.tech-image::before {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    color: var(--white);
    font-size: 4rem;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.tech-image:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.tech-image:hover::after {
    opacity: 1;
}

.tech-image:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* CTA Sections */
.cta-section {
    background-image: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)), url('../images/cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
    padding: 70px 0;
    position: relative;
}

.cta-section .cta-title {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-section .cta-description {
    color: var(--white);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

.cta-secondary-section {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 70px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-secondary-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, .05) 35px, rgba(255, 255, 255, .05) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, .03) 35px, rgba(255, 255, 255, .03) 70px);
    opacity: 1;
}

.cta-secondary-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-secondary-content {
    position: relative;
    z-index: 1;
}

.cta-secondary-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-secondary-content p {
    margin-bottom: 30px;
    opacity: 0.95;
}

/* About Us Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(179, 142, 63, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(185, 140, 62, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.hero-subtitle {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.hero-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    margin: 0 auto 25px;
    border-radius: 2px;
}

.hero-tagline {
    color: #ccc;
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.doctor-profile {
    background-color: var(--white);
    padding: 70px 0;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.profile-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 8px;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 142, 63, 0.2), rgba(185, 140, 62, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
    border-radius: 15px;
}

.image-frame:hover .image-overlay {
    opacity: 1;
}

.profile-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.profile-text p {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.qualifications-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 70px 0;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.qualification-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.qualification-card:hover::before {
    transform: scaleX(1);
}

.qualification-card:hover {
    transform: translateY(-10px);
    border-color: rgba(179, 142, 63, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.qual-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(179, 142, 63, 0.1), rgba(185, 140, 62, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.qual-icon i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    transition: transform 0.4s ease;
}

.qualification-card:hover .qual-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    transform: scale(1.1);
}

.qualification-card:hover .qual-icon i {
    color: var(--white);
    transform: rotate(10deg);
}

.qualification-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-black);
}

.qualification-card p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.6;
}

.experience-section {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(179, 142, 63, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.experience-box {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.experience-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.experience-icon {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.experience-text h2 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.experience-text p {
    color: var(--white);
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 500;
}

.specialization-list {
    position: relative;
    z-index: 1;
}

.specialization-list h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.spec-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.spec-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.spec-content h4 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.spec-content p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 70px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, var(--primary-gold), var(--secondary-gold));
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(179, 142, 63, 0.2);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(179, 142, 63, 0.1), rgba(185, 140, 62, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    transform: scale(1.1) rotate(10deg);
}

.contact-card:hover .contact-icon i {
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.contact-card p {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--primary-gold);
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--secondary-gold);
    text-decoration: underline;
}

.contact-card .location {
    color: var(--light-text);
    font-size: 1rem;
    font-style: italic;
}

/* Service Page */
.services-detail-card {
    overflow: hidden;
    border: none !important;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.services-detail-card .service-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.services-detail-card .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.services-detail-card .service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    backdrop-filter: blur(2px);
}

.services-detail-card .read-more-btn {
    padding: 12px 35px;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 20px rgba(179, 142, 63, 0.4);
    letter-spacing: 0.5px;
}

.services-detail-card .read-more-btn:hover {
    background-color: var(--white);
    color: var(--primary-gold);
    transform: translateY(30px) scale(1.1);
}

.services-detail-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.services-detail-card:hover .service-image img {
    transform: scale(1.15);
}

.services-detail-card:hover .service-overlay {
    opacity: 1;
}

.services-detail-card:hover .read-more-btn {
    transform: translateY(0);
}

.services-detail-card .service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.services-detail-card .service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-black);
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.services-detail-card:hover .service-content h3 {
    color: var(--primary-gold);
}

.services-detail-card .service-content p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.services-detail-card .service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.services-detail-card .service-link:hover {
    gap: 15px;
    color: var(--secondary-gold);
}

.patient-journey {
    background-color: var(--light-bg);
}

.journey-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.journey-step {
    flex: 1;
    min-width: 200px;
}

.step-number {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.step-text {
    color: var(--light-text);
}

/* Gallery Page */
.gallery {
    background-color: var(--white);
}

.gallery-hero {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
    background-image: linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.75)), url('../images/hero-gallery.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(179, 142, 63, 0.1) 0%, transparent 50%, rgba(179, 142, 63, 0.05) 100%);
    pointer-events: none;
}

.gallery-hero .container {
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-hero p {
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    overflow: hidden;
    height: 350px;
    position: relative;
    border-radius: 15px;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.4rem;
    transition: var(--transition);
    background-color: var(--primary-black);
    position: relative;
}

.gallery-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-placeholder::after {
    background: rgba(179, 142, 63, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.gallery-overlay p {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Lightbox */
.modern-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    padding: 10px;
}

.modern-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    z-index: 20001;
}

/* Lightbox Controls Top Bar */
.lightbox-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20010;
    pointer-events: none;
}

/* Navigation Buttons Group */
.lightbox-nav {
    display: flex;
    gap: 15px;
    pointer-events: auto;
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20002;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modern-lightbox.active .lightbox-container {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

.lightbox-content {
    position: relative;
    text-align: center;
    max-width: 100%;
}

.lightbox-image {
    max-height: 60vh;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    transition: opacity 0.4s ease, transform 0.4s ease;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-info {
    position: absolute;
    bottom: -110px;
    left: 0;
    width: 100%;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.modern-lightbox.active .lightbox-info {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.lightbox-desc {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 5px;
    font-weight: 300;
}

.lightbox-counter {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-top: 10px;
    display: block;
}

/* Button */
.lightbox-prev,
.lightbox-next,
.lightbox-close {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.lightbox-close {
    font-size: 1.8rem;
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(179, 142, 63, 0.3);
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--primary-gold);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(0) scale(0.95);
}

/* Contact Page */
.contact-page-header {
    background-image: linear-gradient(rgba(5, 5, 5, 0.75), rgba(5, 5, 5, 0.75)), url('../images/hero-contact.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(179, 142, 63, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.contact-page-header .container {
    position: relative;
    z-index: 1;
}

.contact-page-header h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-page-header p {
    color: var(--primary-gold);
    font-size: 1.2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.contact-info {
    background-color: var(--primary-black);
    padding: 80px 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    opacity: 0.1;
}

.info-item {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
}

.info-item.hours {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.info-item h4 {
    color: var(--primary-gold);
    margin-bottom: 8px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 1.05rem;
    opacity: 0.8;
    color: #ccc;
}

.contact-form-container {
    padding: 80px 60px;
}

.contact-form-container h3 {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: #fcfcfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(179, 142, 63, 0.1);
}

/* Map Container */
.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* Popup Notification */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10005;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10006;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
}

.popup-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-content {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 400px;
    max-width: 90vw;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.popup-notification.success .popup-content {
    border-top: 4px solid #2ecc71;
}

.popup-notification.error .popup-content {
    border-top: 4px solid #e74c3c;
}

.popup-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup-notification.success .popup-icon {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.popup-notification.error .popup-icon {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.popup-icon i {
    font-size: 1.5rem;
}

.popup-message {
    flex: 1;
    padding-top: 5px;
}

.popup-message h4 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    color: var(--primary-black);
    font-weight: 700;
}

.popup-message p {
    margin: 0;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.1rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-black);
}

/* Button Loader */
.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    display: none;
}

.btn-loader i {
    animation: spin 1s linear infinite;
}

/* Contact Form */
.contact-form .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(179, 142, 63, 0.15);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 70px 0 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo a {
    display: block;
    width: 40%;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo a img {
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.footer-logo p {
    opacity: 0.7;
    line-height: 1.7;
    color: #ccc;
    font-size: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--primary-gold);
    margin-bottom: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    opacity: 0.7;
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-gold);
    padding-left: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    color: var(--white);
    font-size: 1.2rem;
}

.social-icons a:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.contact-us {
    margin-top: 40px;
}

.contact-details {
    opacity: 0.7;
    color: #ccc;
    transition: var(--transition);
}

.contact-details a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #ccc;
    margin-bottom: 15px;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.5;
    font-size: 0.95rem;
    color: #ccc;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

/* Responsive */
@media (min-width: 992px) {

    /* Gallery Page */
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {

    /* Top Bar */
    .top-bar-left {
        display: none;
    }

    .top-bar-container {
        justify-content: center;
    }

    /* Scroll To Top */
    .scroll-top-btn {
        bottom: 30px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Home page */
    .hero h1 {
        font-size: 3.5rem;
    }

    .about-content,
    .tech-content {
        grid-template-columns: 1fr;
    }

    .comparison-grid {
        gap: 30px;
    }

    /* About Us */
    .profile-content,
    .experience-content {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    /* Contact Us */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    /* Header */
    .nav-links {
        position: fixed;
        top: 78px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        gap: 25px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Home page */
    .hero {
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .comparison-card {
        padding: 35px 25px;
    }

    .comparison-card h3 {
        font-size: 1.6rem;
    }

    /* About Us */
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .profile-text h2 {
        font-size: 2.2rem;
    }

    .experience-text h2 {
        font-size: 2.5rem;
    }

    .specialization-list h3 {
        font-size: 1.8rem;
    }

    /* Service Page */
    .services-detail-card .service-image {
        height: 220px;
    }

    .services-detail-card .service-content {
        padding: 25px;
    }

    /* Gallery Page */
    .gallery-hero {
        background-attachment: scroll;
    }

    .gallery-hero h1 {
        font-size: 2.5rem;
    }

    .gallery-hero p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        min-height: 250px;
    }

    /* LightBox */
    .lightbox-top-bar {
        padding: 10px;
    }

    .lightbox-prev,
    .lightbox-next,
    .lightbox-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-close {
        font-size: 1.5rem;
    }

    .lightbox-container {
        max-width: 100%;
    }

    .lightbox-image {
        border-radius: 8px;
        border: none;
    }

    .lightbox-info {
        padding: 0 10px;
    }

    .lightbox-title {
        font-size: 1.2rem;
    }

    /* Contact page */
    .contact-form-container {
        padding: 80px 40px;
    }

    .popup-content {
        min-width: 320px;
        max-width: 90vw;
        padding: 20px;
        gap: 15px;
    }

    .popup-icon {
        width: 50px;
        height: 50px;
    }

    .popup-icon i {
        font-size: 1.5rem;
    }

    .popup-message h4 {
        font-size: 1.1rem;
    }

    .popup-message p {
        font-size: 0.9rem;
    }

    .popup-notification.show {
        top: 80px;
    }

    .contact-page-header h1 {
        font-size: 2.5rem;
    }

    .contact-page-header p {
        font-size: 1rem;
    }

    .contact-wrapper {
        margin-bottom: 0;
    }

    .map-container {
        height: 350px;
    }

    /* Page Loader */
    .page-loader::before {
        width: 200px;
        height: 200px;
    }

    .spinner {
        width: 60px;
        height: 60px;
    }

    .spinner::before {
        width: 60px;
        height: 60px;
    }

    .spinner::after {
        width: 45px;
        height: 45px;
    }

    .loader-content {
        gap: 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 80px;
    }

    .contact-us {
        margin-top: 60px;
    }
}

@media (max-width: 480px) {

    /* Sidebar */
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Home page */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-content,
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .comparison-card {
        padding: 35px 25px;
    }

    .comparison-card h3 {
        font-size: 1.6rem;
    }

    /* About Us */
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .profile-text h2 {
        font-size: 2.2rem;
    }

    .experience-text h2 {
        font-size: 2.5rem;
    }

    .specialization-list h3 {
        font-size: 1.8rem;
    }

    /* Service Page */
    .services-detail-card .service-image {
        height: 220px;
    }

    .services-detail-card .service-content {
        padding: 25px;
    }

    /* Contact page */
    .contact-form-container {
        padding: 80px 40px;
    }

    .popup-content {
        min-width: 320px;
        max-width: 90vw;
        padding: 20px;
        gap: 15px;
    }

    .popup-icon {
        width: 50px;
        height: 50px;
    }

    .popup-icon i {
        font-size: 1.5rem;
    }

    .popup-message h4 {
        font-size: 1.1rem;
    }

    .popup-message p {
        font-size: 0.9rem;
    }

    .popup-notification.show {
        top: 80px;
    }

    .contact-page-header h1 {
        font-size: 2.5rem;
    }

    .contact-page-header p {
        font-size: 1rem;
    }

    .contact-wrapper {
        margin-bottom: 0;
    }

    .map-container {
        height: 350px;
    }

    /* Spinner */
    .spinner {
        width: 50px;
        height: 50px;
    }

    .spinner::before {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }

    .spinner::after {
        width: 35px;
        height: 35px;
        border-width: 2px;
    }

    .loader-text {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer {
        padding-top: 80px;
    }
}