/* CSS Variables & Custom Properties */
:root {
    --primary: #2b7a3e; /* JDS brand green */
    --primary-hover: #1f582c;
    --accent: #4ade80; /* bright green for highlight */
    --gold: #d4af37; /* gold for stars/seals */
    --gold-hover: #c5a059;
    --dark: #1a1a1a;
    --dark-green: #112d18;
    --text-dark: #333333;
    --text-muted: #666666;
    --text-light: #ffffff;
    --bg-light: #f4f7f5;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Global Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 122, 62, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-quote {
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 13px;
    padding: 10px 24px;
}

.btn-quote:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(43, 122, 62, 0.2);
}

/* Section Common Headers */
.section-tagline {
    display: block;
    text-align: center;
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--dark);
    position: relative;
}

.section-desc {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 50px auto;
    color: var(--text-muted);
    font-size: 16px;
}

/* Header Section */
.site-header {
    background-color: var(--bg-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.logo-link {
    display: flex;
    align-items: center;
    background-color: #112d18; /* Dark forest green to blend and frame the logo */
    padding: 6px 14px;
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.1);
}

.logo-img {
    height: 38px; /* Slightly compact to accommodate the padding inside the header */
    object-fit: contain;
}

.logo-fallback {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-fallback i {
    font-size: 28px;
    color: var(--primary);
}

.logo-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.logo-tagline {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

/* Dropdown Menu Styling */
.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 2px;
    transition: var(--transition);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 180px 0 160px 0;
    color: var(--text-light);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 45, 24, 0.85) 0%, rgba(17, 24, 39, 0.7) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-title {
    font-size: 54px;
    font-weight: 900;
    color: var(--text-light);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Golden Badge Seal */
.hero-badge {
    background: radial-gradient(circle, #e6c270 0%, #b88d37 100%);
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    border: 4px double #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    flex-shrink: 0;
}

.badge-inner {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.badge-stars {
    color: #fff;
    font-size: 11px;
    margin-bottom: 4px;
}

.badge-text-top {
    font-size: 11px;
    letter-spacing: 1px;
}

.badge-text-mid {
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    padding: 2px 0;
    margin: 2px 0;
    letter-spacing: 0.5px;
}

.badge-text-bot {
    font-size: 11px;
    letter-spacing: 1px;
}

/* Hero Info Bar */
.hero-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    background: rgba(17, 45, 24, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-bar-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
}

.info-icon {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 18px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
}

.info-text a.info-value:hover {
    color: var(--accent);
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0 80px 0;
    text-align: center;
    background-color: var(--bg-white);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(43, 122, 62, 0.2);
}

.service-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

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

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-icon-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--text-light);
    font-size: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--bg-white);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 2;
}

.service-card-content {
    padding: 40px 24px 30px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 28px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-features li i {
    color: var(--primary);
    font-size: 16px;
}

.btn-card-learn {
    background-color: var(--primary);
    color: var(--text-light);
    width: 100%;
    text-align: center;
    font-size: 13px;
    padding: 12px 0;
}

.btn-card-learn:hover {
    background-color: var(--primary-hover);
}

/* Why Choose Us Section */
.features-section {
    background-color: var(--bg-light);
    padding: 90px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(43, 122, 62, 0.15);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: rgba(43, 122, 62, 0.1);
    color: var(--primary);
    font-size: 24px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Recent Projects Section */
.gallery-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 45, 24, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    transform: translateY(15px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-action {
    text-align: center;
    margin-top: 40px;
}

/* Reviews Section */
.reviews-section {
    background-color: var(--bg-light);
    padding: 95px 0;
    overflow: hidden;
}

.reviews-slider-container {
    max-width: 1100px;
    margin: 30px auto;
    position: relative;
    padding: 10px;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-reviews {
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: var(--text-muted);
}

.review-card {
    flex: 0 0 calc((100% - 60px) / 3); /* default 3 cards visible */
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars-rating {
    color: var(--gold);
    font-size: 14px;
    margin-bottom: 16px;
}

.review-card-text {
    font-size: 14px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.review-client {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-meta {
    display: flex;
    flex-direction: column;
}

.review-client-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--dark);
}

.review-client-role {
    font-size: 12px;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary);
    width: 24px;
}

.reviews-action {
    text-align: center;
    margin-top: 20px;
}

/* Modal Styling */
.review-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.review-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(30px);
    transition: var(--transition);
}

.review-modal.open .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
}

.close-modal:hover {
    color: var(--dark);
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.modal-content p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 14px;
    background-color: var(--bg-light);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: #fff;
}

/* Star input formatting */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 24px;
    color: #cbd5e1;
    cursor: pointer;
    transition: var(--transition);
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: var(--gold);
}

.btn-submit-review {
    background-color: var(--primary);
    color: var(--text-light);
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
}

.btn-submit-review:hover {
    background-color: var(--primary-hover);
}

.form-status {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    display: none;
}

.form-status.success {
    display: block;
    color: #15803d;
}

.form-status.error {
    display: block;
    color: #b91c1c;
}

/* Get In Touch Section */
.contact-section {
    background-color: var(--primary);
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1440px;
    margin: 0 auto;
}

.contact-info-block {
    background-color: var(--dark-green);
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-tagline {
    font-family: var(--font-heading);
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.info-title {
    color: var(--text-light);
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 16px;
    font-weight: 800;
}

.info-desc {
    opacity: 0.85;
    font-size: 15px;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    opacity: 0.6;
    text-transform: uppercase;
}

.detail-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--text-light);
}

.detail-value:hover {
    color: var(--accent);
}

.contact-form-block {
    background-color: var(--primary);
    padding: 100px 80px;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-md);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-field.full-width {
    margin-bottom: 28px;
}

.btn-send-message {
    background-color: #0b1f11;
    color: var(--text-light);
    padding: 16px 40px;
    font-size: 14px;
}

.btn-send-message:hover {
    background-color: #000000;
    transform: translateY(-2px);
}

/* Footer Section */
.site-footer {
    background-color: #0d1e11;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 60px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 54px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h3 {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    letter-spacing: 0.5px;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-block, .contact-form-block {
        padding: 60px 40px;
    }
    
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .follow-col {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        padding: 24px;
        display: none;
        border-top: 1px solid var(--border);
    }
    
    .nav-menu.open {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .nav-link {
        width: 100%;
        display: block;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
    }
    
    .header-cta {
        display: none;
    }
    
    .hero-section {
        padding: 140px 0 100px 0;
        background-position: left center;
    }
    
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-info-bar {
        position: relative;
        background: var(--dark-green);
    }
    
    .info-bar-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .review-card {
        flex: 0 0 100%; /* 1 card visible on mobile */
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        grid-column: span 1;
    }
    
    .follow-col {
        grid-column: span 1;
    }

    .mobile-only-nav-item {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    
    .btn-mobile-callback {
        width: 100%;
        font-size: 13px;
        padding: 12px 0;
        text-align: center;
        background-color: var(--primary);
        color: var(--text-light);
    }
    
    .btn-mobile-callback:hover {
        background-color: var(--primary-hover);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Callback & WhatsApp Feature Styles */
.btn-header-callback {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-size: 12px;
    padding: 8px 18px;
    margin-right: 12px;
}

.btn-header-callback:hover {
    background-color: var(--primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.mobile-only-nav-item {
    display: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-3px);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: #111;
    color: #fff;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Recent Projects Collage Layout */
.gallery-single-showcase {
    max-width: 1000px;
    margin: 30px auto 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.gallery-single-showcase:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gallery-showcase-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Avatar Selection Styles */
.avatar-selection-container {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

.avatar-radio {
    cursor: pointer;
    position: relative;
    display: block;
}

.avatar-radio input[type="radio"] {
    display: none;
}

.avatar-radio img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 2px solid #cbd5e1;
    object-fit: cover;
    transition: var(--transition);
}

.default-avatar-preview {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--bg-light);
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 16px;
    transition: var(--transition);
}

/* Avatar Radio Checked States */
.avatar-radio input[type="radio"]:checked + img {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.avatar-radio input[type="radio"]:checked + .default-avatar-preview {
    border-color: var(--primary);
    background-color: rgba(43, 122, 62, 0.1);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}



