/*
Theme Name: Social Synergy Agency
Theme URI: https://example.com/social-synergy
Author: Reilly
Author URI: https://example.com
Description: A modern, responsive theme for paid ads agencies. Built for Oxygen Builder 4.9.1.
Version: 1.0
License: MIT
Text Domain: social-synergy
*/

/* Header Phone Icon */
.header-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.header-phone:hover {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
  color: #fff;
}

.header-phone svg {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .header-phone span {
    display: none;
  }
  
  .header-phone {
    padding: 0.6rem;
    border-radius: 50%;
  }
}