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

:root {
    --primary-color: #00d4ff;
    --primary-dark: #00a8cc;
    --primary-light: #5fe4ff;
    --secondary-color: #ff6b35;
    --secondary-dark: #e85a2a;
    --accent-color: #ffbe0b;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #28a745;
    --danger: #dc3545;
    --shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 212, 255, 0.25);
    --glow: 0 0 20px rgba(0, 212, 255, 0.5);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.power-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s infinite, rotate 3s linear infinite;
    box-shadow: var(--glow);
}

.power-button i {
    font-size: 48px;
    color: var(--dark);
}

.preloader h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 20px;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    animation: loading 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 212, 255, 0.2);
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    order: 1;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    box-shadow: var(--glow);
}

.logo-icon i {
    color: var(--dark);
    font-size: 24px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    order: 2;
    align-items: center;
}

@media (min-width: 969px) {
    .nav-menu {
        flex: 1;
        justify-content: center;
        margin: 0 20px;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 10px;
    white-space: nowrap;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    order: 3;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
    background-color: rgba(0, 212, 255, 0.1);
    padding: 5px 8px;
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: none;
    border-radius: 50px;
    background-color: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    min-width: 70px;
    justify-content: center;
}

.lang-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.lang-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
    transform: scale(1.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.navbar.scrolled .lang-btn {
    color: var(--white);
}

.call-btn {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    }
    50% {
        box-shadow: 0 5px 30px rgba(0, 212, 255, 0.7), 0 0 40px rgba(0, 212, 255, 0.3);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    transition: var(--transition);
}

/* Mobile Language Switcher (inside menu) */
.mobile-language-switcher {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-label {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.mobile-lang-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-lang-btn {
    flex: 1;
    min-width: 90px;
}

.mobile-call-btn-wrapper {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.92), rgba(0, 168, 204, 0.75));
    z-index: -1;
}

/* Hot Air Balloon */
.hero-balloon {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0.15;
    animation: float-balloon 20s ease-in-out infinite;
    pointer-events: none;
}

.balloon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 50px rgba(0, 212, 255, 0.5));
}

@keyframes float-balloon {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-30px, -40px) rotate(2deg);
    }
    50% {
        transform: translate(20px, -60px) rotate(-2deg);
    }
    75% {
        transform: translate(-20px, -40px) rotate(1deg);
    }
}

/* Particles Background */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-logo-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: pulse 3s infinite, float 6s ease-in-out infinite;
    box-shadow: var(--glow);
}

.hero-logo-large i {
    font-size: 60px;
    color: var(--dark);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    box-sizing: border-box;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.title-line {
    display: block;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding: 15px 25px;
    background-color: rgba(0, 212, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: var(--glow);
}

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

/* Section Styles */
section {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.section-tag::before {
    right: 100%;
}

.section-tag::after {
    left: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, var(--light), #e3f7ff);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
}

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

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border-color: var(--primary-color);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured:hover {
    transform: scale(1.08) translateY(-15px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--dark);
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card.featured .service-icon {
    background: var(--white);
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-list li:hover {
    transform: translateX(5px);
}

.service-list i {
    color: var(--success);
    font-size: 14px;
}

.service-card.featured .service-list i {
    color: var(--accent-color);
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: 10px;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

.showcase-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.showcase-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.showcase-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    animation: bounce 3s infinite;
}

.showcase-badge i {
    font-size: 20px;
}

.showcase-content {
    color: var(--white);
}

.showcase-content .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
    margin-bottom: 25px;
}

.showcase-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.showcase-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.showcase-stat:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.stat-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.stat-info p {
    font-size: 13px;
    opacity: 0.8;
    margin: 0;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 3s infinite;
}

.experience-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 30px;
    color: var(--primary-color);
}

.experience-text {
    font-size: 16px;
    font-weight: 700;
}

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

.about-text {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 16px;
}

.why-choose {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 190, 11, 0.05));
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.why-choose h3 {
    color: var(--dark);
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose h3 i {
    color: var(--primary-color);
}

.choose-list {
    list-style: none;
}

.choose-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--dark);
    transition: var(--transition);
    padding: 10px;
    border-radius: 8px;
}

.choose-list li:hover {
    background-color: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

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

/* Projects Section */
.projects {
    background: linear-gradient(135deg, #f0f0f0, var(--light));
}

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

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: var(--shadow);
}

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

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--dark), transparent);
    color: var(--white);
    padding: 30px;
    transform: translateY(70%);
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.2);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 212, 255, 0.95), transparent);
}

.project-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.project-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Offers/Packages Section */
.offers-section {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

.offers-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.08), transparent);
    border-radius: 50%;
}

.offers-section .section-header {
    position: relative;
    z-index: 1;
}

.offers-section .section-title {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

.offers-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

.offers-section .section-tag {
    color: var(--primary-color);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.offer-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.offer-card:hover::before {
    opacity: 1;
}

.offer-card.featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 168, 204, 0.1));
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.offer-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.offer-card.urgent {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(255, 190, 11, 0.1));
    border-color: var(--secondary-color);
}

.offer-card.urgent:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 60px rgba(255, 190, 11, 0.3);
}

.offer-popular-badge,
.offer-urgent-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 25px;
    border-radius: 0 0 15px 15px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.offer-popular-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
}

.offer-urgent-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--dark);
}

.offer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 20px;
    font-size: 36px;
    color: var(--dark);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    transition: var(--transition);
}

.offer-card:hover .offer-icon {
    transform: rotateY(360deg);
}

.offer-card.urgent .offer-icon {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.offer-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.offer-card.urgent .offer-badge {
    background: rgba(255, 107, 53, 0.2);
    color: var(--secondary-color);
}

.offer-title {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.offer-price {
    margin-bottom: 25px;
}

.offer-price .price-from {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.offer-price .price-amount {
    display: block;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-card.urgent .offer-price .price-amount {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.offer-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    font-size: 15px;
    transition: var(--transition);
}

.offer-features li:hover {
    transform: translateX(5px);
}

.offer-features li i {
    color: var(--success);
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.offer-card.urgent .offer-features li i {
    color: var(--accent-color);
}

.offer-btn {
    width: 100%;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.offer-card.featured .offer-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
    border: none;
}

/* Showcase note styling */
.showcase-note {
    font-size: 14px !important;
    opacity: 0.7;
    margin-top: -20px;
}

/* Responsive for offers */
@media (max-width: 968px) {
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .offer-card.featured {
        transform: scale(1);
    }
    
    .offer-card.featured:hover {
        transform: translateY(-10px);
    }

    .contact-bottom-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .contact-social-row {
        flex-wrap: wrap;
    }

    .contact-bottom-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .offer-card {
        padding: 30px 20px;
    }
    
    .offer-title {
        font-size: 20px;
    }
    
    .offer-price .price-amount {
        font-size: 24px;
    }
    
    .offer-icon {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-description {
    color: var(--gray);
    margin-bottom: 40px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    padding: 15px;
    border-radius: 15px;
}

.contact-item:hover {
    background-color: rgba(0, 212, 255, 0.05);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

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

.contact-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-details p,
.contact-details a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(255, 190, 11, 0.05));
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(0, 212, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
}

.footer-section p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

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

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--gray-light);
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    position: relative;
    z-index: 1;
}

.footer-bottom .tagline {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 10px;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: var(--dark);
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--glow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.6);
}

/* Custom Notification Modal */
.notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.notification-modal.active {
    opacity: 1;
    visibility: visible;
}

.notification-content {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.5);
    border: 2px solid var(--primary-color);
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: relative;
}

.notification-modal.active .notification-content {
    transform: scale(1);
}

.notification-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: successPulse 1.5s ease-in-out;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
}

.notification-icon i {
    font-size: 50px;
    color: var(--dark);
}

.notification-icon.error {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.notification-icon.loading {
    animation: spin 1s linear infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.notification-title {
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.notification-message {
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.notification-close-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--dark);
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.notification-close-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-wrapper {
        flex-wrap: wrap;
        position: relative;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .nav-buttons {
        order: 2;
        flex-direction: row;
        gap: 10px;
        margin-left: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, var(--dark), var(--dark-light));
        width: 100%;
        max-width: 100vw;
        max-height: calc(100vh - 85px);
        overflow-y: auto;
        overflow-x: hidden;
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        transition: left 0.3s ease;
        gap: 25px;
        z-index: 999;
        order: 3;
        flex-basis: 100%;
        box-sizing: border-box;
    }

    .nav-menu.active {
        left: 0;
    }

    .navbar.scrolled .nav-menu {
        top: 70px;
        max-height: calc(100vh - 70px);
    }

    .language-switcher {
        display: none;
    }

    .call-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-language-switcher {
        display: block;
        list-style: none;
    }
    
    .mobile-call-btn-wrapper {
        display: block;
        list-style: none;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .hero {
        min-height: 100vh;
        height: auto;
        padding: 120px 0 80px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.3;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        margin-bottom: 40px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-balloon {
        width: 400px;
        height: 400px;
        bottom: -50px;
        right: -50px;
        opacity: 0.1;
    }
    
    .hero-logo-large {
        width: 100px;
        height: 100px;
        margin-bottom: 25px;
    }
    
    .hero-logo-large i {
        font-size: 50px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        transform: scale(1);
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .showcase-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-image {
        transform: none;
    }

    .showcase-stats {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        min-height: 100vh;
        padding: 100px 0 60px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-buttons {
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 15px;
    }

    .section-title {
        font-size: 28px;
    }
    
    .section-description {
        font-size: 15px;
        padding: 0 10px;
    }

    .hero-features {
        gap: 12px;
        flex-direction: column;
        padding: 0 10px;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .feature-item i {
        font-size: 20px;
    }

    .contact-form-wrapper {
        padding: 25px 15px;
    }

    .hero-logo-large {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .hero-logo-large i {
        font-size: 35px;
    }

    .hero-balloon {
        width: 250px;
        height: 250px;
        opacity: 0.08;
        bottom: -30px;
        right: -30px;
    }
    
    .logo span {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-icon i {
        font-size: 18px;
    }
    
    section {
        padding: 60px 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }
    
    .service-card {
        padding: 30px 20px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .showcase-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .hero-buttons {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-features {
        width: 100%;
        max-width: 100%;
    }
    
    * {
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }

    .certs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cert-card {
        padding: 25px 20px;
    }

    .cert-icon {
        font-size: 50px !important;
    }
}

/* ========================================
   Certifications Section
======================================== */
.certifications {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a2e 0%, #1a1a4e 50%, #0a0a2e 100%);
    position: relative;
}

.certifications .section-title {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: white;
    background-clip: unset;
    color: white;
}

.certifications .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.cert-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.cert-image {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.cert-card:hover .cert-image {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

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

.cert-image-icon {
    background: linear-gradient(135deg, #0a1628, #1a2a4e);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.cert-icon {
    font-size: 70px;
    color: #00d4ff;
}

.cert-card h3 {
    color: #00d4ff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cert-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Contact Social Row & Bottom Info
======================================== */
.contact-social-row {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    margin-bottom: 20px;
}

.contact-social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0a0a2e, #1a1a4e);
    border: 1px solid rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-link:hover {
    background: linear-gradient(135deg, #00d4ff, #00b4d8);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.contact-bottom-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
}

.contact-btw-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
    background: #f0f4f8;
    padding: 8px 16px;
    border-radius: 10px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #00c9a7, #00d4ff);
    color: white;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.google-review-btn i {
    font-size: 1rem;
}

/* ========================================
   Certifications Responsive (after base)
======================================== */
@media (max-width: 968px) {
    .certs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .certifications {
        padding: 60px 0;
    }

    .cert-card {
        padding: 30px 20px;
    }

    .cert-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 600px) {
    .certs-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cert-card {
        padding: 25px 20px;
    }

    .cert-image {
        width: 110px;
        height: 110px;
        padding: 0;
    }

    .cert-icon {
        font-size: 45px;
    }

    .cert-card h3 {
        font-size: 1.1rem;
    }

    .cert-card p {
        font-size: 0.85rem;
    }
}
