:root {
--primary-color: #0C0C0C;
--secondary-color: #F5F5F5;
--accent-color: #A5A5A5;
--yellow: #F5C500;
--text-color: #1a1a1a;
--spacing-unit: 1rem;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
line-height: 1.6;
color: var(--text-color);
overflow-x: hidden;
}
#preloader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--secondary-color);
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 50px;
height: 50px;
border: 5px solid var(--accent-color);
border-radius: 50%;
border-top-color: var(--primary-color);
animation: spin 1s linear infinite;
}
@keyframes spin {
100% { transform: rotate(360deg); }
}
.header {
background: var(--primary-color);
color: var(--secondary-color);
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
text-align: center;
position: relative;
}
.logo img {
max-width: 150px;
margin-bottom: var(--spacing-unit);
}
.header h1 {
font-size: 3rem;
margin-bottom: calc(var(--spacing-unit) / 2);
}
.tagline {
font-size: 1.2rem;
opacity: 0.9;
}
.services {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: calc(var(--spacing-unit) * 2);
margin-top: calc(var(--spacing-unit) * 2);
}
.service-card {
background: var(--secondary-color);
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
}
.service-image {
height: 200px;
overflow: hidden;
}
.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
}
.service-card h3 {
padding: var(--spacing-unit);
margin: 0;
}
.service-card p {
padding: 0 var(--spacing-unit) var(--spacing-unit);
color: var(--accent-color);
}
.about {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: var(--secondary-color);
text-align: center;
width: 50%;
margin: 0 auto;
}
.why-choose {
background: var(--primary-color);
color: var(--secondary-color);
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
}
.reasons-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: calc(var(--spacing-unit) * 2);
margin-top: calc(var(--spacing-unit) * 2);
}
.reason {
text-align: center;
padding: var(--spacing-unit);
}
.market {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: var(--secondary-color);
}
.market-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: calc(var(--spacing-unit) * 2);
margin-top: calc(var(--spacing-unit) * 2);
}
.market-card {
padding: calc(var(--spacing-unit) * 2);
background: #f5f5f5;
border-radius: 8px;
}
.contact {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: var(--primary-color);
color: var(--secondary-color);
text-align: center;
}
.contact-info {
display: flex;
flex-direction: column;
gap: var(--spacing-unit);
margin-top: calc(var(--spacing-unit) * 2);
}
.contact-item {
color: var(--secondary-color);
text-decoration: none;
padding: var(--spacing-unit);
border: 1px solid var(--secondary-color);
border-radius: 4px;
transition: background-color 0.3s ease;
}
.contact-item:hover {
background-color: var(--secondary-color);
color: var(--primary-color);
}
.floating-contact {
position: fixed;
bottom: calc(var(--spacing-unit) * 2);
right: calc(var(--spacing-unit) * 2);
display: flex;
flex-direction: column;
gap: var(--spacing-unit);
}
.floating-btn {
width: 50px;
height: 50px;
border-radius: 50%;
background: var(--primary-color);
color: var(--secondary-color);
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.floating-btn:hover {
transform: scale(1.1);
}
.about {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: var(--secondary-color);
text-align: center;
width: 60%;
margin: 0 auto;
}
.team {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: var(--secondary-color);
text-align: center;
margin-bottom: calc(var(--spacing-unit) * 2);
}
.team h2 {
margin-bottom: calc(var(--spacing-unit) * 2);
}
.team-image {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
max-width: 800px;
margin: 0 auto;
}
.team-image img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.testimonials {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: #f8f9fa;
text-align: center;
}
.testimonials h2 {
margin-bottom: calc(var(--spacing-unit) * 3);
color: var(--text-color);
}
.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
gap: calc(var(--spacing-unit) * 2);
max-width: 1200px;
margin: 0 auto;
}
.testimonial-card {
background: var(--secondary-color);
border-radius: 12px;
padding: calc(var(--spacing-unit) * 2);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
cursor: pointer;
position: relative;
overflow: hidden;
}
.testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.text-testimonial {
cursor: default;
}
.text-testimonial:hover {
transform: translateY(-2px);
}
.testimonial-content p {
font-style: italic;
font-size: 1.1rem;
line-height: 1.6;
color: var(--text-color);
margin-bottom: calc(var(--spacing-unit) * 1.5);
text-align: left;
}
.testimonial-author {
text-align: left;
border-top: 1px solid #eee;
padding-top: var(--spacing-unit);
}
.testimonial-author h4 {
margin: 0;
color: var(--primary-color);
font-size: 1rem;
}
.testimonial-author span {
color: var(--accent-color);
font-size: 0.9rem;
}
.testimonial-image {
position: relative;
height: 200px;
margin-bottom: var(--spacing-unit);
border-radius: 8px;
overflow: hidden;
}
.testimonial-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.image-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.image-testimonial:hover .image-overlay {
opacity: 1;
}
.image-testimonial:hover .testimonial-image img {
transform: scale(1.05);
}
.image-overlay .material-icons {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.image-overlay p {
margin: 0;
font-size: 0.9rem;
}
.document-preview {
position: relative;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: calc(var(--spacing-unit) * 2);
border-radius: 8px;
margin-bottom: var(--spacing-unit);
text-align: center;
min-height: 150px;
display: flex;
flex-direction: column;
justify-content: center;
}
.document-preview .material-icons {
font-size: 3rem;
margin-bottom: var(--spacing-unit);
opacity: 0.9;
}
.document-preview h4 {
margin: 0 0 0.5rem 0;
font-size: 1.2rem;
}
.document-preview p {
margin: 0;
opacity: 0.9;
}
.document-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.8);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
opacity: 0;
transition: opacity 0.3s ease;
border-radius: 8px;
}
.document-testimonial:hover .document-overlay {
opacity: 1;
}
.document-overlay .material-icons {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.document-overlay p {
margin: 0;
font-size: 0.9rem;
}
.modal {
display: none;
position: fixed;
z-index: 10000;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
animation: fadeIn 0.3s ease;
}
.modal-content {
background-color: var(--secondary-color);
margin: 5% auto;
padding: 0;
border-radius: 12px;
width: 90%;
max-width: 800px;
max-height: 80vh;
overflow: hidden;
position: relative;
animation: slideIn 0.3s ease;
}
.modal-close {
position: absolute;
top: 15px;
right: 20px;
color: var(--text-color);
font-size: 2rem;
font-weight: bold;
cursor: pointer;
z-index: 10001;
background: rgba(255, 255, 255, 0.9);
width: 40px;
height: 40px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
transition: background-color 0.3s ease;
}
.modal-close:hover {
background: rgba(255, 255, 255, 1);
}
.modal-body {
padding: calc(var(--spacing-unit) * 3);
max-height: 70vh;
overflow-y: auto;
}
.modal-body img {
width: 100%;
height: auto;
border-radius: 8px;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
@keyframes slideIn {
from { transform: translateY(-50px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
@media (max-width: 768px) {
.header h1 {
font-size: 2rem;
}
.tagline {
font-size: 1rem;
}
.services-grid,
.reasons-grid,
.market-content {
grid-template-columns: 1fr;
}
.floating-contact {
bottom: var(--spacing-unit);
right: var(--spacing-unit);
}
.about {
padding: calc(var(--spacing-unit) * 4) var(--spacing-unit);
background: var(--secondary-color);
text-align: center;
width: 90%;
margin: 0 auto;
padding:0.1rem;
text-align: center;
}
.team {
padding: calc(var(--spacing-unit) * 2) var(--spacing-unit);
margin-bottom: var(--spacing-unit);
}
.team-image {
max-width: 100%;
padding: 0 var(--spacing-unit);
}
.team-image img {
border-radius: 4px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.testimonials-grid {
grid-template-columns: 1fr;
gap: var(--spacing-unit);
}
.testimonial-card {
padding: var(--spacing-unit);
}
.testimonial-image {
height: 150px;
}
.modal-content {
width: 95%;
margin: 2% auto;
}
.modal-body {
padding: calc(var(--spacing-unit) * 1.5);
}
}
.services-tiles {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
padding: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.service-tile {
background: #fff;
border-radius: 8px;
padding: 2rem;
text-align: center;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
}
.service-tile:hover {
transform: translateY(-5px);
}
.service-tile .material-icons,
.service-tile .material-symbols-outlined {
font-size: 48px;
color: #333;
margin-bottom: 1rem;
}
.service-tile h3 {
font-size: 1.1rem;
margin: 0;
color: #333;
}
@media screen and (max-width: 768px) {
.services-tiles {
display: grid;
grid-template-columns: repeat(2, 1fr) !important;
gap: 8px;
padding: 8px;
margin: 0 8px;
max-width: 100%;
}
.service-tile {
padding: 12px;
margin: 0;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100px;
}
.service-tile .material-icons,
.service-tile .material-symbols-outlined {
font-size: 24px;
margin-bottom: 4px;
}
.service-tile h3 {
font-size: 12px;
text-align: center;
margin: 0;
line-height: 1.2;
word-break: break-word;
}
}
.sidebar-burger {
position: fixed;
top: 1rem;
left: 1rem;
z-index: 10002;
width: 48px;
height: 48px;
background: #000;
color: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 2px 8px rgba(0,0,0,0.3);
transition: background 0.2s ease;
}
.sidebar-burger:hover {
background: #333;
}
.sidebar-burger .material-icons {
font-size: 28px;
}
.sidebar-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 10001;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sidebar-overlay.open {
opacity: 1;
visibility: visible;
}
.sidebar-panel {
position: fixed;
top: 0;
left: 0;
width: 280px;
max-width: 85vw;
height: 100%;
background: #000;
color: #fff;
z-index: 10002;
transform: translateX(-100%);
transition: transform 0.3s ease;
overflow-y: auto;
}
.sidebar-panel.open {
transform: translateX(0);
}
.sidebar-panel .sidebar-header {
padding: 1rem 1.25rem;
border-bottom: 1px solid rgba(255,255,255,0.15);
display: flex;
align-items: center;
justify-content: space-between;
}
.sidebar-panel .sidebar-header .sidebar-close {
background: none;
border: none;
color: #fff;
width: 40px;
height: 40px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
}
.sidebar-panel .sidebar-header .sidebar-close:hover {
background: rgba(255,255,255,0.1);
}
.sidebar-panel .sidebar-header .sidebar-close .material-icons {
font-size: 24px;
}
.sidebar-panel nav {
padding: 1rem 0;
}
.sidebar-panel nav a {
display: block;
color: #fff;
text-decoration: none;
padding: 0.75rem 1.25rem;
font-size: 1rem;
transition: background 0.2s ease;
}
.sidebar-panel nav a:hover {
background: rgba(255,255,255,0.1);
}
body.sidebar-open {
overflow: hidden;
}
@media (max-width: 768px) {
.sidebar-burger {
top: 0.75rem;
left: 0.75rem;
width: 44px;
height: 44px;
min-width: 44px;
min-height: 44px;
}
.sidebar-panel {
width: 85vw;
max-width: 280px;
}
}
:root {
--black: #0C0C0C;
--white: #F5F5F5;
--yellow: #F5C500;
--ink: #0C0C0C;
--paper: #ffffff;
--accent-color: #0C0C0C;
}
html { scroll-behavior: smooth; }
body {
background: var(--white);
color: var(--ink);
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
p, li, span, a, h1, h2, h3, h4, h5, h6 { color: inherit; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.usp-section h2, .services-section h2, .property-types h2, .gallery-section h2,
.areas-section h2, .testimonials h2, .we-do h2, .why-choose h2, .guarantee h2,
.team h2, .cta-band h2, .about h2 {
position: relative;
padding-bottom: 0.9rem;
margin-bottom: 2.5rem;
font-weight: 700;
letter-spacing: -0.01em;
}
.usp-section h2::after, .services-section h2::after, .property-types h2::after,
.gallery-section h2::after, .areas-section h2::after, .testimonials h2::after,
.we-do h2::after, .why-choose h2::after, .team h2::after, .cta-band h2::after {
content: "";
display: block;
width: 56px;
height: 4px;
background: var(--yellow);
margin: 0.9rem auto 0;
border-radius: 2px;
}
.btn-primary, .btn-secondary {
display: inline-block;
padding: 0.95rem 2rem;
border-radius: 4px;
font-weight: 700;
font-size: 0.95rem;
text-decoration: none;
letter-spacing: 0.01em;
transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,197,0,0.35); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.45); }
.btn-secondary:hover { transform: translateY(-2px); border-color: #fff; }
.hero {
background: var(--black);
color: #fff;
padding: 7rem 1.5rem 4.5rem;
text-align: center;
position: relative;
border-bottom: 5px solid var(--yellow);
}
.hero-inner { max-width: 860px; margin: 0 auto; }
.hero-eyebrow {
display: inline-block;
background: var(--yellow);
color: var(--black);
font-size: 0.72rem;
letter-spacing: 0.18em;
font-weight: 700;
text-transform: uppercase;
padding: 0.4rem 0.9rem;
border-radius: 3px;
margin-bottom: 1.75rem;
}
.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img { max-height: 64px; width: auto; }
.hero h1 {
font-size: clamp(2.1rem, 5.5vw, 3.75rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -0.02em;
margin-bottom: 1.5rem;
color: #fff;
}
.hero-sub {
font-size: 1.08rem;
line-height: 1.75;
color: #fff;
opacity: 0.85;
max-width: 700px;
margin: 0 auto 2.25rem;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-motto {
font-size: 0.85rem;
letter-spacing: 0.22em;
color: #fff;
text-transform: uppercase;
font-weight: 700;
}
.hero-motto::before, .hero-motto::after {
content: "";
display: inline-block;
width: 28px;
height: 2px;
background: var(--yellow);
vertical-align: middle;
margin: 0 0.75rem;
}
.trust-strip { background: var(--yellow); padding: 0.85rem 1.5rem; }
.trust-strip-inner {
display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem;
justify-content: center; align-items: center;
font-size: 0.82rem; font-weight: 700; color: var(--black);
text-transform: uppercase; letter-spacing: 0.06em;
}
.trust-divider { opacity: 0.45; }
.video-section {
background: var(--black);
padding: 0;
width: 100%;
}
.video-wrap { max-width: none; margin: 0; }
.video-wrap video {
width: 100vw;
max-width: 100%;
height: auto;
display: block;
aspect-ratio: 16 / 9;
object-fit: cover;
background: #000;
}
.usp-section { padding: 5.5rem 0; background: var(--white); text-align: center; }
.usp-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem; text-align: left;
}
.usp-card {
background: var(--paper);
border: 1px solid #e6e6e6;
border-top: 4px solid var(--yellow);
border-radius: 6px;
padding: 2.25rem 2rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.usp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.usp-num { font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: 0.75rem; }
.usp-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; color: var(--ink); }
.usp-card p { color: var(--ink); font-size: 0.95rem; line-height: 1.65; }
.services-section { background: var(--black); padding: 5.5rem 0; text-align: center; }
.services-section h2 { color: #fff; }
.services-tiles-12 {
display: grid; grid-template-columns: repeat(auto-fit, minmax(165px, 1fr)); gap: 1rem;
}
.services-tiles-12 .tile {
display: flex; flex-direction: column; align-items: center; justify-content: center;
gap: 0.65rem;
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.12);
border-radius: 6px;
padding: 1.75rem 1rem;
color: #fff;
text-decoration: none;
font-size: 0.9rem; font-weight: 600; text-align: center;
transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.services-tiles-12 .tile:hover {
transform: translateY(-4px);
background: rgba(255,255,255,0.10);
border-color: var(--yellow);
}
.services-tiles-12 .tile .material-icons { font-size: 2.1rem; color: var(--yellow); }
.property-types { padding: 5.5rem 0; background: var(--white); text-align: center; }
.property-types h2 { padding-bottom: 0.9rem; margin-bottom: 2.5rem; position: relative; font-weight: 700; }
.property-types h2::after { content:""; display:block; width:56px; height:4px; background:var(--yellow); margin:0.9rem auto 0; border-radius:2px; }
.property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; text-align: left; }
.property-card {
background: var(--paper); border-radius: 6px; padding: 2.25rem 2rem;
border-top: 4px solid var(--yellow); border-left: 1px solid #eee; border-right: 1px solid #eee; border-bottom: 1px solid #eee;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.property-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.10); }
.property-card .material-icons { font-size: 2.6rem; color: var(--black); margin-bottom: 0.75rem; }
.property-card h3 { margin-bottom: 0.5rem; color: var(--ink); }
.property-card p { color: var(--ink); font-size: 0.95rem; }
.compliance-strip { background: var(--black); padding: 1.4rem 1.5rem; text-align: center; border-top: 1px solid rgba(255,255,255,0.08); }
.compliance-strip p { color: #fff; opacity: 0.8; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; }
.gallery-section { padding: 5.5rem 0; background: var(--paper); text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.75rem; }
.gallery-grid img {
width: 100%; height: 240px; object-fit: cover; border-radius: 4px; display: block;
transition: transform 0.3s ease;
}
.gallery-grid img:hover { transform: scale(1.02); }
.areas-section { background: var(--white); padding: 4.5rem 0; text-align: center; }
.areas-list { color: var(--ink); font-size: 0.98rem; line-height: 2.1; max-width: 920px; margin: 0 auto; }
.cta-band { background: var(--yellow); padding: 5.5rem 0; text-align: center; }
.cta-band h2 { color: var(--black); }
.cta-band h2::after { background: var(--black); }
.cta-band p { color: var(--black); margin-bottom: 2.25rem; font-size: 1.08rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--black); color: #fff; }
.cta-band .btn-primary:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.cta-band .btn-secondary { color: var(--black); border-color: var(--black); }
.site-footer { background: var(--black); color: #fff; padding: 2.5rem 1.5rem; text-align: center; font-size: 0.85rem; border-top: 4px solid var(--yellow); }
.site-footer p { opacity: 0.8; margin: 0.25rem 0; }
.site-footer a { color: #fff; text-decoration: underline; }
.sticky-whatsapp {
position: fixed; bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px;
background: #25D366; border-radius: 50%;
display: flex; align-items: center; justify-content: center;
box-shadow: 0 6px 16px rgba(0,0,0,0.28); z-index: 999;
transition: transform 0.2s ease;
}
.sticky-whatsapp:hover { transform: scale(1.08); }
.floating-contact { display: none; }
.floating-btn {
width: 54px; height: 54px; border-radius: 50%;
background: var(--black); color: #fff;
font-size: 1.4rem; line-height: 1;
box-shadow: 0 6px 16px rgba(0,0,0,0.25);
transition: transform 0.2s ease;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn.whatsapp { background: #25D366; }
.header {
background: var(--black);
color: #fff;
padding: 6rem 1.5rem 4rem;
text-align: center;
border-bottom: 5px solid var(--yellow);
}
.header .logo img { max-width: 170px; margin-bottom: 1.25rem; }
.header h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -0.01em; color: #fff; margin-bottom: 0.75rem; }
.header .tagline { font-size: 1.1rem; color: #fff; opacity: 0.85; max-width: 640px; margin: 0 auto; }
.about { width: auto; max-width: 880px; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; background: var(--white); }
.about h2 { margin-bottom: 1.5rem; font-weight: 700; }
.about p { color: var(--ink); font-size: 1.02rem; line-height: 1.8; }
.we-do { padding: 4.5rem 1.5rem; background: var(--paper); text-align: center; }
.we-do h2 { margin-bottom: 2.5rem; }
.service-tile {
background: var(--white);
border: 1px solid #e6e6e6;
border-top: 4px solid var(--yellow);
border-radius: 6px;
padding: 2rem 1.5rem;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.10); }
.service-tile .material-icons, .service-tile .material-symbols-outlined { color: var(--black); }
.service-tile h3 { color: var(--ink); }
.why-choose { background: var(--black); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.why-choose h2 { color: #fff; }
.reason { padding: 1.5rem; }
.reason h3 { color: var(--yellow) ; }
.reason h3 { color: #fff; }
.reason h3 { position: relative; display: inline-block; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.reason h3::after { content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%); width:32px; height:3px; background:var(--yellow); border-radius:2px; }
.reason p { color: #fff; opacity: 0.85; }
.guarantee { padding: 5rem 1.5rem; background: var(--white); text-align: center; max-width: 900px; margin: 0 auto; }
.guarantee h2 { margin-bottom: 1.25rem; }
.guarantee > p { color: var(--ink); font-size: 1.05rem; }
.list-wrapper { display: flex; justify-content: center; margin: 2rem 0; }
.guarantee ul { list-style: none; text-align: left; max-width: 560px; }
.guarantee li {
color: var(--ink);
background: var(--paper);
border-left: 4px solid var(--yellow);
padding: 0.9rem 1.1rem;
margin-bottom: 0.75rem;
border-radius: 0 4px 4px 0;
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.guarantee li strong { color: var(--ink); }
.team { padding: 5rem 1.5rem; background: var(--paper); text-align: center; }
.testimonials { padding: 5.5rem 1.5rem; background: var(--white); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; max-width: 1140px; margin: 0 auto; text-align: left; }
.testimonial-card { background: var(--paper); border: 1px solid #e9e9e9; border-radius: 8px; }
.testimonial-content p { color: var(--ink); }
.testimonial-author h4 { color: var(--ink); }
.testimonial-author span { color: var(--ink); opacity: 0.7; }
.document-preview { background: var(--black); color: #fff; }
.document-preview .material-icons { color: var(--yellow); }
.document-preview h4, .document-preview p { color: #fff; }
.contact { padding: 5.5rem 1.5rem; background: var(--black); color: #fff; text-align: center; }
.contact h1, .contact h2 { color: #fff; margin-bottom: 1.5rem; }
.contact-info { max-width: 640px; margin: 2rem auto 0; }
.contact-item { color: #fff; border: 1px solid rgba(255,255,255,0.4); border-radius: 4px; transition: background-color 0.2s ease, border-color 0.2s ease; }
.contact-item:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }
.email-form form { display: flex; flex-direction: column; gap: 0.75rem; }
.email-form input, .email-form textarea {
width: 100%; padding: 0.85rem 1rem; border-radius: 4px; border: 1px solid #ccc;
font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff;
}
.email-form textarea { min-height: 120px; resize: vertical; }
.email-form button {
background: var(--yellow); color: var(--black); border: none; padding: 0.95rem 1.5rem;
border-radius: 4px; font-weight: 700; font-size: 0.95rem; cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.email-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(245,197,0,0.35); }
.sidebar-panel { background: var(--black); }
.sidebar-panel nav a { color: #fff; }
.sidebar-panel nav a:hover { background: rgba(255,255,255,0.1); }
.sidebar-burger { background: var(--black); }
.sidebar-burger:hover { background: var(--black); }
#preloader { background: var(--black); }
.loader { border-color: rgba(255,255,255,0.25); border-top-color: var(--yellow); }
.fixed-quote-button { display: none !important; }
@media (max-width: 768px) {
.hero { padding: 5.5rem 1rem 3.5rem; }
.usp-grid { grid-template-columns: 1fr; }
.services-tiles-12 { grid-template-columns: repeat(3, 1fr); }
.property-grid { grid-template-columns: 1fr; }
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.gallery-grid img { height: 160px; }
.hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
.video-wrap video { aspect-ratio: 16 / 10; }
.header { padding: 4.5rem 1rem 3rem; }
}
@media (max-width: 480px) {
.services-tiles-12 { grid-template-columns: repeat(2, 1fr); }
}
.header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 0.25rem;
}
.header::before {
content: "YOUR PROPERTY SOLUTIONS PARTNER IN CAPE TOWN";
display: inline-block;
background: var(--yellow);
color: var(--black);
font-size: 0.7rem;
letter-spacing: 0.16em;
font-weight: 700;
text-transform: uppercase;
padding: 0.4rem 0.9rem;
border-radius: 3px;
margin-bottom: 1.25rem;
}
.header h1 { margin-bottom: 0.5rem; }
.header .tagline { margin-bottom: 1.5rem; }
.header::after {
content: "DONE RIGHT. DONE ONCE.";
color: #fff;
font-size: 0.8rem;
letter-spacing: 0.2em;
text-transform: uppercase;
font-weight: 700;
margin-top: 1.5rem;
padding-top: 1.25rem;
border-top: 2px solid var(--yellow);
}
.header .hero-ctas { margin-bottom: 0; }
.services h2, .video-gallery h2, .process h2, .faq h2, .locations h2, .gallery-carousel h2 {
position: relative;
padding-bottom: 0.9rem;
margin-bottom: 2.5rem;
font-weight: 700;
}
.services h2::after, .video-gallery h2::after, .process h2::after,
.faq h2::after, .locations h2::after, .gallery-carousel h2::after {
content: ""; display: block; width: 56px; height: 4px;
background: var(--yellow); margin: 0.9rem auto 0; border-radius: 2px;
}
.services { padding: 5.5rem 1.5rem; background: var(--paper); text-align: center; }
.services .services-grid { max-width: 1140px; margin: 0 auto; }
.service-card { text-align: left; background: #fff; border: 1px solid #e6e6e6; border-radius: 8px; overflow: hidden; }
.service-card .service-image, .service-card > img { display: block; }
.service-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.service-card h3 { color: var(--ink); padding: 1rem 1.25rem 0.25rem; }
.service-card p { color: var(--ink); padding: 0 1.25rem 1.25rem; }
.team-image { max-width: 860px; margin: 0 auto; }
.team-image img { width: 100%; height: auto; border-radius: 8px; display: block; }
.gallery-carousel { padding: 5.5rem 1.5rem; background: var(--paper); }
.carousel-container { max-width: 1140px; margin: 0 auto; position: static; }
.carousel-btn, .carousel-indicators { display: none !important; }
.carousel-wrapper { overflow: visible; }
.carousel-track {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 0.75rem;
transform: none !important;
width: auto !important;
}
.carousel-slide { width: auto !important; flex: none !important; }
.carousel-slide img {
width: 100%; height: 240px; object-fit: cover;
border-radius: 6px; display: block; border: 1px solid #e6e6e6;
}
.video-gallery { padding: 5.5rem 1.5rem; background: var(--white); text-align: center; }
.video-grid {
display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 1.5rem; max-width: 1140px; margin: 0 auto;
}
.video-card {
background: #fff; border: 1px solid #e6e6e6; border-radius: 8px;
overflow: hidden; cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.video-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,0.10); }
.video-thumbnail { position: relative; }
.video-thumbnail img { width: 100%; height: 200px; object-fit: cover; display: block; }
.play-overlay {
position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
background: rgba(0,0,0,0.35); transition: background-color 0.2s ease;
}
.video-card:hover .play-overlay { background: rgba(0,0,0,0.45); }
.play-overlay .material-icons { font-size: 4rem; color: #fff; }
.video-card h3 { padding: 1rem; color: var(--ink); font-size: 1.05rem; }
.video-modal {
display: none; position: fixed; inset: 0; z-index: 10000;
background: rgba(0,0,0,0.9); align-items: center; justify-content: center; padding: 1.5rem;
}
.video-modal.active { display: flex; }
.video-modal-content { position: relative; width: 100%; max-width: 960px; }
.video-modal-player { position: relative; width: 100%; }
.video-modal-player video, .video-modal-player iframe {
display: none; width: 100%; aspect-ratio: 16 / 9; border: 0; background: #000; border-radius: 6px;
}
.video-modal-player video.visible, .video-modal-player iframe.visible { display: block; }
.video-modal-close {
position: absolute; top: -3rem; right: 0; background: none; border: none;
color: #fff; cursor: pointer; padding: 0.25rem;
}
.video-modal-close .material-icons { font-size: 2.25rem; color: #fff; }
.process { padding: 5.5rem 1.5rem; background: var(--paper); text-align: center; }
.process .list-wrapper { display: flex; justify-content: center; }
.process ol {
counter-reset: step; list-style: none; max-width: 680px;
text-align: left; width: 100%;
}
.process ol li {
counter-increment: step; position: relative;
padding: 1rem 1.25rem 1rem 3.75rem; margin-bottom: 0.75rem;
background: var(--white); border-radius: 6px; border-left: 4px solid var(--yellow);
color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.process ol li::before {
content: counter(step); position: absolute; left: 1rem; top: 50%; transform: translateY(-50%);
width: 1.9rem; height: 1.9rem; background: var(--black); color: #fff;
border-radius: 50%; display: flex; align-items: center; justify-content: center;
font-weight: 700; font-size: 0.9rem;
}
.faq { padding: 5.5rem 1.5rem; background: var(--white); }
.faq h2 { text-align: center; }
.faq-container { max-width: 840px; margin: 0 auto; display: grid; gap: 0.75rem; }
.faq-item {
background: #fff; border: 1px solid #e6e6e6; border-radius: 6px; padding: 1.25rem 1.5rem;
}
.faq-item h3 { color: var(--ink); margin-bottom: 0.4rem; font-size: 1.05rem; }
.faq-item p { color: var(--ink); }
.locations { padding: 5.5rem 1.5rem; background: var(--paper); text-align: center; }
.locations > p { color: var(--ink); margin-bottom: 1.5rem; }
.locations .list-wrapper { display: flex; justify-content: center; }
.locations ul {
list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
gap: 0.6rem; max-width: 800px; width: 100%;
}
.locations li {
background: var(--white); border-left: 3px solid var(--yellow); color: var(--ink);
padding: 0.65rem 0.95rem; border-radius: 4px; text-align: left;
}
.testimonials blockquote {
background: #fff; border: 1px solid #e6e6e6; border-left: 4px solid var(--yellow);
border-radius: 6px; padding: 1.5rem 1.75rem; max-width: 840px;
margin: 0 auto 1rem; text-align: left; font-style: italic; color: var(--ink);
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.testimonials blockquote cite {
display: block; margin-top: 0.85rem; font-style: normal; font-weight: 600; color: var(--ink);
}
.reasons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; max-width: 1140px; margin: 2.5rem auto 0; }
.reasons-grid > div { padding: 1.5rem; text-align: center; }
.reasons-grid > div h3 { color: #fff; position: relative; display: inline-block; padding-bottom: 0.5rem; margin-bottom: 0.5rem; }
.reasons-grid > div h3::after { content:""; position:absolute; left:50%; bottom:0; transform:translateX(-50%); width:32px; height:3px; background:var(--yellow); border-radius:2px; }
.reasons-grid > div p { color: #fff; opacity: 0.85; }
@media (max-width: 768px) {
.video-grid { grid-template-columns: 1fr; }
.carousel-track { grid-template-columns: repeat(2, 1fr); }
.carousel-slide img { height: 160px; }
.reasons-grid { grid-template-columns: 1fr; }
}
