/* Main Styles for Arkiaz */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar {
    background-color: #2c3e50;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .logo {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.navbar .nav-links {
    display: flex;
    gap: 2rem;
}

.navbar .nav-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar .nav-links a:hover {
    color: #3498db;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Section */
.content-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Team Section */
.team-section {
    background-color: #fff;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.team-section h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Cards */
.card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2980b9;
}

/* CMS Placeholder Styling */
.cms-placeholder {
    min-height: 50px;
}

/* ========== Floating Contact Buttons with Motion Effects ========== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Call Button */
.call-float {
    background: linear-gradient(135deg, #3498db, #2980b9);
    animation: float-bounce 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.call-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.call-float:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.call-float:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.5);
}

/* Phone ring animation */
.call-float i {
    animation: phone-ring 2s ease-in-out infinite;
    animation-delay: 1s;
}

/* WhatsApp Button */
.whatsapp-float {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.5s ease;
}

.whatsapp-float:hover::before {
    transform: scale(1.5);
    opacity: 0;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(-15deg);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* Pulse ring effect */
.floating-buttons a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid currentColor;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

.call-float::after {
    border-color: #3498db;
}

.whatsapp-float::after {
    border-color: #25D366;
}

/* ========== Keyframe Animations ========== */

/* Floating bounce effect */
@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse ring expanding outward */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Phone ringing shake */
@keyframes phone-ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-15deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-15deg);
    }
    50%, 100% {
        transform: rotate(0deg);
    }
}

/* ========== Mobile Responsive ========== */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 15px;
        gap: 12px;
    }
    
    .floating-buttons a {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 15px;
        right: 10px;
        gap: 10px;
    }
    
    .floating-buttons a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
