/* Reset and Base Styles - Updated: 2024-09-03 - FINAL: Professional Dark Theme with Golden Accents - Footer Fixed - Read More Buttons Fixed - Clickability Enhanced - Overflow Fixed - H3 Visibility Fixed - Secondary Button Colors Swapped - Glass Effects Enhanced - Button Functionality Fixed */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #ffffff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    perspective: 1000px;
    font-size: 16px;
    scroll-behavior: smooth;
}

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

/* 3D Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(25px) saturate(180%);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    background: linear-gradient(45deg, #d4af37, #e8e8e8, #d4af37);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-logo span {
    color: #d4af37;
    font-size: 0.8rem;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* 3D Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #1a1a1a, #d4af37, #2a2a2a);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    transform: translateZ(50px);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    transform: translateZ(30px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transform: translateZ(40px);
}

.btn {
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transform-style: preserve-3d;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    color: white;
    font-size: 1rem;
    text-align: center;
    min-width: 120px;
    min-height: 50px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #2a2a2a);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
}

/* Duplicate removed - using unified definition below */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.hero-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 107, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(45, 55, 72, 0.2);
    backdrop-filter: blur(10px);
    animation: rotate3D 20s linear infinite;
    transform-style: preserve-3d;
}

@keyframes rotate3D {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

/* 3D Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    transform-style: preserve-3d;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 700;
    transform: translateZ(30px);
}

.section-header p {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    transform: translateZ(20px);
}

/* 3D About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
    transform: translateZ(25px);
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    transform: translateZ(15px);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    transform-style: preserve-3d;
}

.stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.stat:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.stat h4 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #a0aec0, #cbd5e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #ffffff;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    transform-style: preserve-3d;
}

.about-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* 3D Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 212, 255, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

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

.service-card h3 {
    font-size: 1.4rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.service-card p {
    color: #ffffff;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* 3D Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.team-card {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.team-card .content-area {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card:hover {
    transform: translateY(-15px) rotateX(10deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.team-image {
    height: 250px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 55, 72, 0.3), rgba(160, 174, 192, 0.3));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.team-placeholder {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.team-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #d4af37;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.team-title {
    padding: 0 1.5rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 1rem;
}

.team-card p:last-child {
    padding: 0 1.5rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.5);
}

/* 3D Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.contact-item:hover {
    transform: translateY(-5px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.contact-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #ffffff;
    line-height: 1.6;
}

.contact-form {
    background: rgba(26, 26, 26, 0.7);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-form h3 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(45, 55, 72, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #d4af37;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* 3D Footer */
.footer {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

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

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    color: #ffffff;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
    transform: translateX(5px);
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    z-index: 2;
}

/* Blog Styles */
.blog-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.blog-content .container {
    max-width: 1000px;
}

.blog-article {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    margin-bottom: 2rem;
}

.blog-section {
    margin-bottom: 2rem;
}

.blog-section h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-section p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.blog-lead {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 500;
    border-left: 4px solid #2d3748;
    padding-left: 1rem;
    margin-bottom: 2rem;
}

.blog-list {
    list-style: none;
    padding-left: 0;
}

.blog-list li {
    color: #ffffff;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.blog-list li::before {
    content: '•';
    color: #ffffff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.blog-sidebar {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    height: fit-content;
}

.blog-sidebar h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.related-article {
    display: block;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.related-article:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.related-article h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.related-article p {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
}

.category-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(45, 55, 72, 0.2);
    color: #ffffff;
    border-radius: 20px;
    text-decoration: none;
    margin: 0.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background: rgba(45, 55, 72, 0.3);
    transform: translateY(-2px);
}

.blog-hero {
    min-height: 60vh;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(45, 55, 72, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-date {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-title {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
}

.blog-cta {
    background: rgba(212, 175, 55, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
    margin-top: 3rem;
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.blog-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-cta p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-content p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 15px 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    backdrop-filter: blur(10px);
    min-width: 300px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.newsletter-form input::placeholder {
    color: #d4af37;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(45, 55, 72, 0.2);
}

.faq-question {
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(45, 55, 72, 0.2);
}

.faq-question h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer p {
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.process-step:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-step p {
    color: #ffffff;
    line-height: 1.6;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-point {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.mission-point:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.mission-point i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.mission-point h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.mission-point p {
    color: #ffffff;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: visible;
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.article-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.article-card .read-more {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    margin-top: 1rem;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    min-height: 44px;
    min-width: 120px;
    text-align: center;
    line-height: 1.2;
}

.article-card .read-more:active {
    transform: translateY(0px);
}

.article-card .read-more:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.article-image {
    height: 200px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.article-meta {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.article-content p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #2a2a2a);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.read-more:hover {
    background: linear-gradient(45deg, #2a2a2a, #d4af37);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.tool-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.tool-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.tool-card p {
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.location-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.location-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.location-address {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
}

.location-details p {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.virtual-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.virtual-feature {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.virtual-feature:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.virtual-feature h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.virtual-feature p {
    color: #ffffff;
    line-height: 1.6;
}

.emergency-contact {
    background: rgba(255, 107, 107, 0.1);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(160, 174, 192, 0.3);
    text-align: center;
}

.emergency-content h2 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.emergency-content p {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.emergency-item i {
    color: #d4af37;
    font-size: 1.5rem;
}

.emergency-item h4 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.emergency-item p {
    color: #ffffff;
    margin: 0;
    font-size: 0.9rem;
}

.emergency-note {
    color: #ffffff;
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
}

/* Additional visibility improvements */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.stat-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-label {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.value-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.value-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.value-item p {
    color: #ffffff;
    line-height: 1.6;
}

.history-timeline {
    margin: 3rem 0;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.timeline-year {
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    flex: 1;
}

.timeline-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.timeline-content p {
    color: #ffffff;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.process-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.process-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.process-item p {
    color: #ffffff;
    line-height: 1.6;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.why-choose-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.why-choose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.why-choose-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.why-choose-item p {
    color: #ffffff;
    line-height: 1.6;
}

.team-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.team-value-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.2);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.team-value-item:hover {
    transform: translateY(-10px) rotateX(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.team-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #1a1a1a, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.team-value-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.team-value-item p {
    color: #ffffff;
    line-height: 1.6;
}

/* Form and interactive elements visibility */
.form-group label {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(45, 55, 72, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(26, 26, 26, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Base button styles - removed duplicate */

.btn:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
    background: linear-gradient(45deg, #d4af37, #1a1a1a);
}

.btn-secondary {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 2px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(10px);
    min-width: 120px;
    min-height: 50px;
}

.btn-secondary:hover {
    background: transparent;
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

/* Button focus and active states for accessibility */
.btn:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(-2px) rotateX(5deg);
}

.btn-secondary:focus {
    outline: 2px solid #d4af37;
    outline-offset: 2px;
}

.btn-secondary:active {
    transform: translateY(-2px) rotateX(5deg);
}

.btn-outline {
    background: transparent;
    border: 2px solid #2d3748;
    color: #ffffff;
}

.btn-outline:hover {
    background: #2d3748;
    color: white;
}



.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.expertise-tag {
    background: rgba(45, 55, 72, 0.2);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(45, 55, 72, 0.3);
    transition: all 0.3s ease;
}

.expertise-tag:hover {
    background: rgba(45, 55, 72, 0.3);
    transform: translateY(-2px);
}

/* Notification styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 212, 255, 0.9);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(45, 55, 72, 0.3);
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: rgba(78, 205, 196, 0.9);
    border-color: rgba(78, 205, 196, 0.3);
}

.notification.error {
    background: rgba(255, 107, 107, 0.9);
    border-color: rgba(160, 174, 192, 0.3);
}



/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 35, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

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

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 25px;
    }

    /* Layout Grids */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        margin: 0 auto;
        max-width: 350px;
    }

    /* Cards */
    .service-card,
    .team-card,
    .contact-item {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Forms */
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 15px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Why Choose Grid */
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-choose-item {
        padding: 1.5rem;
    }

    /* Support Team Grid */
    .support-team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .support-team-item {
        padding: 1.5rem;
    }

    /* Team Values Grid */
    .team-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-values-item {
        padding: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    /* Social Links */
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Container Padding */
    .container {
        padding: 0 20px;
    }

    /* Hero Image */
    .hero-image {
        margin-top: 2rem;
    }

    .hero-placeholder {
        width: 250px;
        height: 250px;
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    /* Extra small screens */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .team-card,
    .contact-item,
    .why-choose-item,
    .support-team-item,
    .team-values-item {
        padding: 1rem;
    }

    .hero-placeholder {
        width: 200px;
        height: 200px;
        font-size: 2.5rem;
    }

    /* Navigation */
    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-logo span {
        font-size: 0.8rem;
    }

    /* Forms */
    .contact-form h3 {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-container {
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: 200px;
    }
}

/* Why Choose Us Grid Styles */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(45, 55, 72, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.why-choose-item:hover::before {
    left: 100%;
}

.why-choose-item:hover {
    transform: translateY(-10px);
    border-color: rgba(45, 55, 72, 0.5);
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.2);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(45, 55, 72, 0.3);
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.4);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(45, 55, 72, 0.4);
}

.why-choose-item h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-choose-item p {
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
}

/* Support Team Grid Styles - Force Override */
section.about .support-team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
    width: 100% !important;
}

.about .support-team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.support-team-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.support-team-item {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.support-team-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.support-team-item:hover::before {
    left: 100% !important;
}

.support-team-item:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(45, 55, 72, 0.5) !important;
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.2) !important;
}

.support-team-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #2d3748 0%, #a0aec0 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    font-size: 2.2rem !important;
    color: white !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(45, 55, 72, 0.3) !important;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.4) !important;
}

.support-team-item:hover .support-team-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 10px 25px rgba(45, 55, 72, 0.4) !important;
}

.support-team-item h3 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.support-team-item p {
    color: #ffffff !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    opacity: 0.9 !important;
}

/* Team Values Grid Styles */
.about .team-values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.team-values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 3rem !important;
}

.team-values-item {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(25px) saturate(180%) !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.team-values-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent) !important;
    transition: left 0.5s ease !important;
}

.team-values-item:hover::before {
    left: 100% !important;
}

.team-values-item:hover {
    transform: translateY(-10px) !important;
    border-color: rgba(45, 55, 72, 0.5) !important;
    box-shadow: 0 20px 40px rgba(45, 55, 72, 0.2) !important;
}

.team-values-icon {
    width: 80px !important;
    height: 80px !important;
    background: linear-gradient(135deg, #2d3748 0%, #a0aec0 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    font-size: 2.2rem !important;
    color: white !important;
    transition: all 0.3s ease !important;
    border: 2px solid rgba(45, 55, 72, 0.3) !important;
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.4) !important;
}

.team-values-item:hover .team-values-icon {
    transform: scale(1.1) rotate(5deg) !important;
    box-shadow: 0 10px 25px rgba(45, 55, 72, 0.4) !important;
}

.team-values-item h4 {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.team-values-item p {
    color: #ffffff !important;
    line-height: 1.6 !important;
    font-size: 1rem !important;
    opacity: 0.9 !important;
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #d4af37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    font-size: 1.4rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(45, 55, 72, 0.3);
    box-shadow: 0 4px 15px rgba(45, 55, 72, 0.4);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a0aec0 0%, #2d3748 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(45, 55, 72, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-links a i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-links a:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}
