/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #3a3a3a;
    --light-gray: #4a4a4a;
    --golden: #d4af37;
    --golden-light: #f4e4bc;
    --golden-dark: #b8860b;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #999999;
    --gradient-golden: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--primary-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.golden-text {
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-golden);
    color: var(--primary-black);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

.btn-secondary {
    background: transparent;
    color: var(--golden);
    border: 2px solid var(--golden);
}

.btn-secondary:hover {
    background: var(--golden);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--medium-gray);
}

.btn-outline:hover {
    border-color: var(--golden);
    color: var(--golden);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    border-bottom: 2px solid var(--golden);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid var(--golden);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: var(--transition);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: var(--text-primary);
}

.nav-logo .logo {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 3px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--golden);
    transition: var(--transition);
    flex-shrink: 0;
}

.nav-logo .logo:hover {
    transform: rotate(5deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    margin: 0;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--golden);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before {
    opacity: 0.1;
    transform: scale(1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--golden);
    background: rgba(212, 175, 55, 0.15);
}

.nav-link.active::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(212, 175, 55, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--golden);
    margin: 4px 0;
    transition: var(--transition);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 6px);
    background: var(--golden-light);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-7px, -6px);
    background: var(--golden-light);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding-top: 80px; /* Add padding to account for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--golden);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--golden);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: var(--golden);
    margin-bottom: 0.5rem;
}

.floating-card span {
    color: var(--text-primary);
    font-weight: 600;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.main-hero-graphic {
    position: relative;
    z-index: 2;
}

.graphic-circle {
    width: 200px;
    height: 200px;
    background: var(--gradient-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-heavy);
    animation: pulse 2s ease-in-out infinite;
}

.graphic-circle i {
    font-size: 4rem;
    color: var(--primary-black);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--golden);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--secondary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--dark-gray);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--golden);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-content {
    padding: 2rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-golden);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--golden);
    font-weight: bold;
}

.service-link {
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

.service-pricing {
    margin: 1rem 0;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--golden), var(--golden-light));
    border-radius: 8px;
    text-align: center;
    border: 2px solid #000;
}

.price-start {
    font-weight: 700;
    color: #000;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.price-start:hover {
    color: #000;
    transform: scale(1.05);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.service-pricing:hover {
    background: linear-gradient(135deg, var(--golden-light), var(--golden));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--primary-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.feature i {
    color: var(--golden);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-heavy);
}

.about-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--golden);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--golden);
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Mission Vision Objective */
.mission-vision-objective {
    padding: 100px 0;
    background: var(--secondary-black);
}

.mvo-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mvo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.mvo-card {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.mvo-card:hover {
    transform: translateY(-5px);
    border-color: var(--golden);
    box-shadow: var(--shadow-medium);
}

.mvo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-black);
    background: var(--gradient-golden);
}

.mvo-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mvo-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--primary-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    border: 1px solid var(--medium-gray);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--medium-gray);
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--golden);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    padding: 60px 0 20px;
    border-top: 1px solid var(--medium-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    height: 35px;
    width: 35px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    padding: 2px;
}

.footer-logo h3 {
    color: var(--golden);
    margin: 0;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--golden);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--medium-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--golden);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--medium-gray);
    color: var(--text-muted);
}

/* Leadership Section */
.leadership {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffd700" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Leadership Hero Section */
.leadership-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    z-index: 2;
}

.leadership-hero-image {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid var(--golden);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    position: relative;
}

.leadership-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.leadership-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    position: relative;
    z-index: 0;
}

.leadership-hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.leadership-hero-content h3 {
    color: var(--golden);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.leadership-hero-content p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.leadership-card {
    background: linear-gradient(145deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.leadership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--golden) 0%, var(--golden-light) 50%, var(--golden) 100%);
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
    border-color: var(--golden);
}

/* Image Wrapper */
.leadership-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    text-align: center;
}

.leadership-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--golden);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
    margin: 0 auto;
    position: relative;
}

.leadership-image::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--golden), var(--golden-light), var(--golden));
    border-radius: 50%;
    z-index: -1;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

.leadership-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

@keyframes borderGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.leadership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.leadership-card:hover .leadership-image img {
    transform: scale(1.05);
}

.leadership-role-badge {
    position: absolute;
    top: -5px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-dark) 100%);
    color: var(--primary-black);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
    border: 2px solid var(--primary-black);
    white-space: nowrap;
}

.leadership-role-badge i {
    font-size: 0.8rem;
}

/* Leadership Details */
.leadership-details {
    text-align: center;
}

.leadership-details h3 {
    color: var(--golden);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.leadership-details h4 {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.leadership-quote {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    border-radius: 15px;
    border-left: 3px solid var(--golden);
    position: relative;
}

.leadership-quote i {
    color: var(--golden);
    font-size: 1.2rem;
    position: absolute;
}

.leadership-quote i:first-child {
    top: 0.5rem;
    left: 0.5rem;
}

.leadership-quote i:last-child {
    bottom: 0.5rem;
    right: 0.5rem;
}

.leadership-quote p {
    color: var(--text-primary);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    padding: 0 1.5rem;
}

.leadership-message {
    text-align: left;
    margin-top: 1.5rem;
}

.leadership-message p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.leadership-message p:last-child {
    margin-bottom: 0;
}

/* Special styling for CEO card */
.ceo-card {
    border-color: var(--golden);
}

.ceo-card .leadership-role-badge {
    background: linear-gradient(135deg, var(--golden) 0%, var(--golden-light) 100%);
}

/* Special styling for Co-Founder card */
.cofounder-card .leadership-role-badge {
    background: linear-gradient(135deg, var(--golden-dark) 0%, var(--golden) 100%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    /* Header logo for tablets */
    .nav-logo h2 {
        font-size: 1.6rem;
        max-width: 250px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-logo .logo {
        height: 52px;
        width: 52px;
        flex-shrink: 0;
    }
    
    .nav-logo a {
        gap: 1.1rem;
        max-width: 320px;
    }

    .hero-title {
        font-size: 3rem;
    }
    
    .hero-container {
        gap: 2rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .mvo-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .leadership-hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .leadership-hero-image {
        width: 100%;
        max-width: 320px;
        height: 200px;
    }
    
    .leadership-hero-content h3 {
        font-size: 1.6rem;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .leadership-card {
        padding: 1.5rem;
    }
    
    .leadership-details h3 {
        font-size: 1.3rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(26, 26, 26, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        border-bottom: 2px solid var(--golden);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        margin: 0 1rem;
        border-radius: 12px;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .nav-link:hover {
        background: rgba(212, 175, 55, 0.15);
        transform: translateX(10px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-stats {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin-top: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    /* Header logo responsive improvements */
    .nav-logo h2 {
        font-size: 1.5rem;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-logo .logo {
        height: 50px;
        width: 50px;
        flex-shrink: 0;
    }
    
    .nav-logo a {
        gap: 1rem;
        max-width: 280px;
    }

    .mvo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mvo-card {
        padding: 2rem;
    }
    
    .leadership-hero {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .leadership-hero-image {
        height: 200px;
        width: 320px;
    }
    
    .leadership-hero-content h3 {
        font-size: 1.4rem;
    }
    
    .leadership-hero-content p {
        font-size: 1rem;
    }
    
    .leadership-card {
        padding: 1rem;
    }
    
    .leadership-image {
        width: 120px;
        height: 120px;
    }
    
    .leadership-details h3 {
        font-size: 1.2rem;
    }
    
    .leadership-details h4 {
        font-size: 0.9rem;
    }
    
    .leadership-quote {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .leadership-quote p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .leadership-message p {
        font-size: 0.9rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .nav-logo .logo {
        height: 45px;
        width: 45px;
        flex-shrink: 0;
    }
    
    .nav-logo a {
        gap: 0.8rem;
        max-width: 220px;
    }

    .hero-container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .mvo-card {
        padding: 1.5rem;
    }

    .mvo-card h3 {
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .mvo-card {
        padding: 1rem;
    }

    .mvo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .nav-logo h2 {
        font-size: 1.1rem;
        max-width: 200px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .nav-logo .logo {
        height: 40px;
        width: 40px;
        flex-shrink: 0;
    }
    
    .nav-logo a {
        gap: 0.6rem;
        max-width: 260px;
    }
}

@media (max-width: 360px) {
    /* Header logo for very small screens */
    .nav-logo h2 {
        font-size: 1rem;
        max-width: 180px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .nav-logo .logo {
        height: 35px;
        width: 35px;
        flex-shrink: 0;
    }
    
    .nav-logo a {
        gap: 0.5rem;
        max-width: 230px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .about-text h2 {
        font-size: 1.6rem;
    }

    .mvo-card h3 {
        font-size: 1.2rem;
    }
    
    .leadership-hero {
        padding: 0.8rem;
        gap: 1rem;
    }
    
    .leadership-hero-image {
        height: 180px;
        width: 280px;
    }
    
    .leadership-hero-content h3 {
        font-size: 1.2rem;
    }
    
    .leadership-hero-content p {
        font-size: 0.9rem;
    }
    
    .leadership-card {
        padding: 0.8rem;
    }
    
    .leadership-image {
        width: 100px;
        height: 100px;
    }
    
    .leadership-details h3 {
        font-size: 1.1rem;
    }
    
    .leadership-details h4 {
        font-size: 0.8rem;
    }
    
    .leadership-quote {
        padding: 0.6rem;
        margin: 0.8rem 0;
    }
    
    .leadership-quote p {
        font-size: 0.8rem;
        padding: 0 0.8rem;
    }
    
    .leadership-message p {
        font-size: 0.85rem;
    }
}

/* Landscape orientation fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-container {
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        margin-bottom: 1rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-background {
        background-size: cover;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .hero-buttons {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .service-card,
    .mvo-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Force Gold Colors on Mobile - Cache Busting */
@media (max-width: 768px) {
    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .btn-secondary {
        color: #d4af37 !important;
        border-color: #d4af37 !important;
    }
    
    .btn-secondary:hover {
        background: #d4af37 !important;
        color: #0a0a0a !important;
    }
    
    .golden-text {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .service-pricing {
        background: linear-gradient(135deg, #d4af37, #f4e4bc) !important;
    }
    
    .service-pricing:hover {
        background: linear-gradient(135deg, #f4e4bc, #d4af37) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    }
    
    .price-start {
        color: #000 !important;
    }
    
    .price-start:hover {
        color: #000 !important;
    }
    
    .nav-link:hover {
        color: #d4af37 !important;
        background: rgba(212, 175, 55, 0.1) !important;
    }
    
    .nav-link.active {
        color: #d4af37 !important;
        background: rgba(212, 175, 55, 0.15) !important;
    }
    
    .hamburger:hover {
        background: rgba(212, 175, 55, 0.1) !important;
    }
    
    .bar {
        background: #d4af37 !important;
    }
    
    .hamburger.active .bar:nth-child(1),
    .hamburger.active .bar:nth-child(3) {
        background: #f4e4bc !important;
    }
    
    .hero-badge {
        background: rgba(212, 175, 55, 0.1) !important;
        color: #d4af37 !important;
        border-color: rgba(212, 175, 55, 0.3) !important;
    }
    
    .section-badge {
        background: rgba(212, 175, 55, 0.1) !important;
        color: #d4af37 !important;
        border-color: rgba(212, 175, 55, 0.3) !important;
    }
    
    .stat-number {
        color: #d4af37 !important;
    }
    
    .service-icon {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .service-card:hover {
        border-color: #d4af37 !important;
    }
    
    .service-overlay {
        background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent) !important;
    }
    
    .floating-card {
        background: rgba(212, 175, 55, 0.1) !important;
        border-color: rgba(212, 175, 55, 0.3) !important;
    }
    
    .floating-card i {
        color: #d4af37 !important;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #d4af37 !important;
        box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1) !important;
    }
    
    .footer-logo h3 {
        color: #d4af37 !important;
    }
    
    .footer-section ul li a:hover {
        color: #d4af37 !important;
    }
    
    .social-links a:hover {
        background: #d4af37 !important;
        color: #0a0a0a !important;
    }
    
    .leadership-hero {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
        border-color: rgba(212, 175, 55, 0.1) !important;
    }
    
    .leadership-hero-image {
        border-color: #d4af37 !important;
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2) !important;
    }
    
    .leadership-hero-content h3 {
        color: #d4af37 !important;
    }
    
    .leadership-card:hover {
        box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1) !important;
        border-color: #d4af37 !important;
    }
    
    .leadership-image {
        border-color: #d4af37 !important;
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2) !important;
    }
    
    .leadership-image::before {
        background: linear-gradient(45deg, #d4af37, #f4e4bc, #d4af37) !important;
    }
    
    .leadership-role-badge {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        color: #0a0a0a !important;
        box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3) !important;
    }
    
    .leadership-details h3 {
        color: #d4af37 !important;
    }
    
    .leadership-quote {
        background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%) !important;
        border-left-color: #d4af37 !important;
    }
    
    .leadership-quote i {
        color: #d4af37 !important;
    }
    
    .ceo-card .leadership-role-badge {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
    }
    
    .cofounder-card .leadership-role-badge {
        background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%) !important;
    }
    
    .nav-logo h2 {
        color: #d4af37 !important;
    }
    
    .navbar {
        border-bottom-color: #d4af37 !important;
    }
}

/* Force Gold Colors on Smaller Mobile - Additional Cache Busting */
@media (max-width: 576px) {
    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .btn-secondary {
        color: #d4af37 !important;
        border-color: #d4af37 !important;
    }
    
    .service-pricing {
        background: linear-gradient(135deg, #d4af37, #f4e4bc) !important;
    }
    
    .price-start {
        color: #000 !important;
    }
    
    .nav-link:hover {
        color: #d4af37 !important;
        background: rgba(212, 175, 55, 0.1) !important;
    }
    
    .bar {
        background: #d4af37 !important;
    }
    
    .hero-badge {
        background: rgba(212, 175, 55, 0.1) !important;
        color: #d4af37 !important;
    }
    
    .stat-number {
        color: #d4af37 !important;
    }
    
    .service-icon {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .leadership-hero-content h3 {
        color: #d4af37 !important;
    }
    
    .leadership-details h3 {
        color: #d4af37 !important;
    }
    
    .nav-logo h2 {
        color: #d4af37 !important;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .service-pricing {
        background: linear-gradient(135deg, #d4af37, #f4e4bc) !important;
    }
    
    .price-start {
        color: #000 !important;
    }
    
    .bar {
        background: #d4af37 !important;
    }
    
    .hero-badge {
        background: rgba(212, 175, 55, 0.1) !important;
        color: #d4af37 !important;
    }
    
    .stat-number {
        color: #d4af37 !important;
    }
    
    .service-icon {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .nav-logo h2 {
        color: #d4af37 !important;
    }
}

@media (max-width: 360px) {
    .btn-primary {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .service-pricing {
        background: linear-gradient(135deg, #d4af37, #f4e4bc) !important;
    }
    
    .price-start {
        color: #000 !important;
    }
    
    .bar {
        background: #d4af37 !important;
    }
    
    .hero-badge {
        background: rgba(212, 175, 55, 0.1) !important;
        color: #d4af37 !important;
    }
    
    .stat-number {
        color: #d4af37 !important;
    }
    
    .service-icon {
        background: linear-gradient(135deg, #d4af37 0%, #f4e4bc 100%) !important;
        color: #0a0a0a !important;
    }
    
    .nav-logo h2 {
        color: #d4af37 !important;
    }
}

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-btn:hover::before {
    opacity: 1;
}

.floating-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.btn-icon {
    position: relative;
    z-index: 2;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.floating-btn:hover .btn-icon {
    transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 3px solid #25D366;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    border-color: #128C7E;
}

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border: 3px solid #d4af37;
}

.phone-btn:hover {
    background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%);
    border-color: #b8860b;
}

/* Tooltip */
.btn-tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

.tooltip-arrow {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Pulse Animation */
.btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: pulse 2s infinite;
}

.whatsapp-btn .btn-pulse {
    border-color: #25D366;
}

.phone-btn .btn-pulse {
    border-color: #d4af37;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Floating Animation */
.floating-btn {
    animation: float 3s ease-in-out infinite;
}

.whatsapp-btn {
    animation-delay: 0s;
}

.phone-btn {
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .floating-contact-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
    }
    
    .btn-icon {
        font-size: 22px;
    }
    
    .btn-tooltip {
        right: 70px;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .floating-btn:hover .btn-tooltip {
        right: 80px;
    }
}

@media (max-width: 480px) {
    .floating-contact-buttons {
        right: 10px;
        bottom: 10px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    
    .btn-icon {
        font-size: 20px;
    }
    
    .btn-tooltip {
        display: none;
    }
}

@media (max-width: 360px) {
    .floating-contact-buttons {
        right: 8px;
        bottom: 8px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
    }
    
    .btn-icon {
        font-size: 18px;
    }
}

/* Force Gold Colors on Mobile - Cache Busting */
@media (max-width: 768px) {
    .phone-btn {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        border-color: #d4af37 !important;
    }
    
    .phone-btn:hover {
        background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%) !important;
        border-color: #b8860b !important;
    }
    
    .phone-btn .btn-pulse {
        border-color: #d4af37 !important;
    }
}

@media (max-width: 576px) {
    .phone-btn {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        border-color: #d4af37 !important;
    }
    
    .phone-btn:hover {
        background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%) !important;
        border-color: #b8860b !important;
    }
    
    .phone-btn .btn-pulse {
        border-color: #d4af37 !important;
    }
}

@media (max-width: 480px) {
    .phone-btn {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        border-color: #d4af37 !important;
    }
    
    .phone-btn:hover {
        background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%) !important;
        border-color: #b8860b !important;
    }
    
    .phone-btn .btn-pulse {
        border-color: #d4af37 !important;
    }
}

@media (max-width: 360px) {
    .phone-btn {
        background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%) !important;
        border-color: #d4af37 !important;
    }
    
    .phone-btn:hover {
        background: linear-gradient(135deg, #b8860b 0%, #8b6914 100%) !important;
        border-color: #b8860b !important;
    }
    
    .phone-btn .btn-pulse {
        border-color: #d4af37 !important;
    }
}